Everything is saved into EEPROM (including sequences) on change, no need to press play/stop

This commit is contained in:
2023-08-01 19:36:16 +03:00
parent fd77b88b6f
commit 51d004b4a4
3 changed files with 91 additions and 12 deletions

View File

@ -363,5 +363,11 @@ void updateScreen() {
}
}
if (!isPlaying) {
u8g2.drawUTF8(121, yPos, "t");
} else {
u8g2.drawUTF8(122, yPos, "r");
}
} while ( u8g2.nextPage() );
}