This commit is contained in:
Ben V. Brown
2022-11-22 18:26:07 +11:00
parent fe77fb097e
commit 27297fd692
2 changed files with 18 additions and 5 deletions

View File

@@ -3,8 +3,16 @@
#include "OLED.hpp"
#include <stdbool.h>
bool checkForUnderVoltage(void);
uint32_t getSleepTimeout(void);
bool shouldBeSleeping(bool inAutoStart);
void GUIDelay(); //
bool checkForUnderVoltage(void); //
uint32_t getSleepTimeout(void); //
bool shouldBeSleeping(bool inAutoStart); //
bool shouldShutdown(void); //
void gui_drawTipTemp(bool symbol, const FontStyle font); //
void printVoltage(void); //
void warnUser(const char *warning, const int timeout); //
void gui_drawBatteryIcon(void); //
bool checkForUnderVoltage(void); //
uint16_t min(uint16_t a, uint16_t b); //
void printCountdownUntilSleep(int sleepThres); //
#endif