Whoops. Swapped day/night invert
This commit is contained in:
parent
d357e6000f
commit
942440ec0c
|
@ -63,10 +63,10 @@ void tick_default(void) {
|
||||||
night=isNight();
|
night=isNight();
|
||||||
if(night){
|
if(night){
|
||||||
backlightSetBrightness(GLOBAL(lcdbacklight));
|
backlightSetBrightness(GLOBAL(lcdbacklight));
|
||||||
push_queue(queue_setinvert);
|
push_queue(queue_unsetinvert);
|
||||||
}else{
|
}else{
|
||||||
backlightSetBrightness(0);
|
backlightSetBrightness(0);
|
||||||
push_queue(queue_unsetinvert);
|
push_queue(queue_setinvert);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue