diff options
author | David Lamparter <equinox@diac24.net> | 2012-09-19 19:32:16 +0200 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2012-09-19 19:32:16 +0200 |
commit | a909215be74b915801cef36440f7b2ae10248811 (patch) | |
tree | 487e464edd6f638b80e44c2ceb30320f412c2a5e | |
parent | f5f846ea46ca27e2818cb4808117ddf5aaa12d45 (diff) |
dim: raise minimum value 0x40 -> 0x55
-rw-r--r-- | dim.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -60,8 +60,8 @@ static void do_tick(void) dim_state += dim_dir; if (dim_state == 0xff) dim_state = 0xfe; - if (dim_state < 0x40) - dim_state = 0x40; + if (dim_state < 0x55) + dim_state = 0x55; } dali_send(DALI_ADDR | dim_state); } |