mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-08 13:41:28 +00:00
![Manuel](/assets/img/avatar_default.png)
* add hwid for auto-detection * fix: heltec-wireless-tracker USB serial * T-Deck support * trunk fmt * set FRAMERATE to 1 * fix some defines * trunk fmt * corrected vendor link * T-Deck: support keyboard, trackball & touch screen * T-Watch add touchscreen defs, remove getTouch * fix warnings * getTouch uint16 -> int16 * fix touch x,y * fix I2C port * CannedMsgModule: use entire display height * trunk fmt * fix I2C issue for T-Watch * allow dest selection in canned mode * fix: allow dest selection in canned mode * use tft.setBrightness() to poweroff display * Increased t-watch framerate and added back haptic feedback * add da ref * Move to touched * improved sensitivity and accuracy of touch events * use double tap to send canned message * fix warning * trunk fmt * Remove extra hapticFeedback() --------- Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
20 lines
448 B
C
20 lines
448 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,
|
|
SHOW_PREV_FRAME,
|
|
SHOW_NEXT_FRAME
|
|
}; |