mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-08 05:31:25 +00:00
![Jonathan Bennett](/assets/img/avatar_default.png)
* Move static functions into Screen.h, show compass during calibration * Move to _fontHeight macro to avoid collision * Move some alert functions to new alert handler * Catch missed reboot code * ESP32 fixes * Bump esp8266-oled-ssd1306 * Fixes for when a device has no screen * Use new startAlert(char*) helper class * Add EINK bits back to alert handling * Add noop class for no-display devices --------- Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
18 lines
378 B
C
18 lines
378 B
C
/**
|
|
* @brief This class enables on the fly software and hardware setup.
|
|
* It will contain all command messages to change internal settings.
|
|
*/
|
|
|
|
enum class Cmd {
|
|
INVALID,
|
|
SET_ON,
|
|
SET_OFF,
|
|
ON_PRESS,
|
|
START_ALERT_FRAME,
|
|
STOP_ALERT_FRAME,
|
|
START_FIRMWARE_UPDATE_SCREEN,
|
|
STOP_BOOT_SCREEN,
|
|
PRINT,
|
|
SHOW_PREV_FRAME,
|
|
SHOW_NEXT_FRAME
|
|
}; |