Full rewrite of graphics lib. Replace adafruit with u8g2. Overhaul UI.

This commit is contained in:
2025-06-01 19:18:59 -07:00
parent edd7df1cd6
commit 20f65d9bdf
4 changed files with 205 additions and 87 deletions

View File

@ -90,6 +90,10 @@ class Clock {
uClock.pause();
}
void Reset() {
uClock.start();
}
bool IsPaused() {
return uClock.clock_state == uClock.PAUSED;
}