mirror of
https://github.com/meshtastic/firmware.git
synced 2026-04-01 14:04:10 -04:00
13 lines
281 B
C
13 lines
281 B
C
#pragma once
|
|
|
|
#define INPUT_EVENT_UP 17
|
|
#define INPUT_EVENT_DOWN 18
|
|
#define INPUT_EVENT_LEFT 19
|
|
#define INPUT_EVENT_RIGHT 20
|
|
#define INPUT_EVENT_SELECT '\n'
|
|
#define INPUT_EVENT_BACK 27
|
|
#define INPUT_EVENT_CANCEL 24
|
|
|
|
typedef struct _InputEvent {
|
|
char inputEvent;
|
|
} InputEvent; |