mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-03 19:29:57 +00:00
b54073a8a1
* Esp32 bluetooth modes * Comment * Gutting bluetooth * Cleanup * Security * Testing * NRF bluetooth security * Reboot on saved lora or bluetooth settings * Cleanup * Fixes * Stub for platforms without screens * Fixed just-works in esp32 * Cleanup * Display device name in boot screen * Added waypoint module routing * chmod * Words * Protos * Backing out partition changes for testing * Revert "Backing out partition changes for testing" This reverts commit191ed6489c
. * Chmod PR artifacts * Trying setInitialState again * Revert "Trying setInitialState again" This reverts commit703eac7277
. * External notification module * Cleanup * Pin display formatting
18 lines
451 B
C
18 lines
451 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_BLUETOOTH_PIN_SCREEN,
|
|
START_FIRMWARE_UPDATE_SCREEN,
|
|
STOP_BLUETOOTH_PIN_SCREEN,
|
|
STOP_BOOT_SCREEN,
|
|
PRINT,
|
|
START_SHUTDOWN_SCREEN,
|
|
START_REBOOT_SCREEN,
|
|
}; |