Testloop cleanup
Shifted condition should still be in.
This commit is contained in:
@ -1299,8 +1299,6 @@ void lcd_update() {
|
||||
}
|
||||
#endif//CARDINSERTED
|
||||
|
||||
static uint8_t dotcounter = 63;
|
||||
|
||||
uint32_t ms = millis();
|
||||
if (ms > lcd_next_update_millis) {
|
||||
|
||||
@ -1366,12 +1364,11 @@ void lcd_update() {
|
||||
(*currentMenu)();
|
||||
if (lcdDrawUpdate) {
|
||||
do {
|
||||
if (!dotcounter) dotcounter = 63;
|
||||
lcd_setFont(FONT_MENU);
|
||||
u8g.setPrintPos(125, 0);
|
||||
// if (blink % 2) u8g.setColorIndex(1); else u8g.setColorIndex(0); // Set color for the alive dot
|
||||
u8g.drawPixel(127, dotcounter--); // draw alive dot
|
||||
// u8g.setColorIndex(1); // black on white
|
||||
if (blink % 2) u8g.setColorIndex(1); else u8g.setColorIndex(0); // Set color for the alive dot
|
||||
u8g.drawPixel(127, 63); // draw alive dot
|
||||
u8g.setColorIndex(1); // black on white
|
||||
(*currentMenu)();
|
||||
} while( u8g.nextPage() );
|
||||
}
|
||||
|
Reference in New Issue
Block a user