Revert "Use light sleep to save battery in tracker"
This reverts commit b4273f4bdf
.
This commit is contained in:
parent
c396f46dac
commit
32def14d83
1 changed files with 0 additions and 17 deletions
17
src/main.cpp
17
src/main.cpp
|
@ -418,7 +418,6 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
M5.Display.endWrite();
|
M5.Display.endWrite();
|
||||||
sleep();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
App::Choices loop () {
|
App::Choices loop () {
|
||||||
|
@ -456,25 +455,9 @@ public:
|
||||||
next_clock_update = next_minute(current_time);
|
next_clock_update = next_minute(current_time);
|
||||||
drawClock(current_time);
|
drawClock(current_time);
|
||||||
drawBattery();
|
drawBattery();
|
||||||
} else {
|
|
||||||
sleep();
|
|
||||||
}
|
}
|
||||||
return App::LifeTracker;
|
return App::LifeTracker;
|
||||||
}
|
}
|
||||||
|
|
||||||
void sleep() {
|
|
||||||
const time_t current_time = time(nullptr);
|
|
||||||
if (current_time >= next_clock_update) return;
|
|
||||||
|
|
||||||
int seconds = next_clock_update - current_time;
|
|
||||||
esp_sleep_enable_ext0_wakeup(GPIO_NUM_36, LOW); // Wake on touch
|
|
||||||
esp_sleep_enable_ext0_wakeup(GPIO_NUM_37, LOW); // Wake on button up
|
|
||||||
esp_sleep_enable_ext0_wakeup(GPIO_NUM_38, LOW); // Wake on button middle
|
|
||||||
esp_sleep_enable_ext0_wakeup(GPIO_NUM_39, LOW); // Wake on button down
|
|
||||||
esp_sleep_enable_timer_wakeup(seconds * 1000); // Wake up at the next clock update (in microseconds)
|
|
||||||
esp_light_sleep_start();
|
|
||||||
}
|
|
||||||
|
|
||||||
void shutdown() {
|
void shutdown() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue