mirror of
https://github.com/meshtastic/firmware.git
synced 2025-06-08 14:12:05 +00:00
17 lines
367 B
C
17 lines
367 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,
|
|
SHOW_PREV_FRAME,
|
|
SHOW_NEXT_FRAME
|
|
}; |