mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 17:23:25 +00:00
18 lines
521 B
C
18 lines
521 B
C
|
#pragma once
|
||
|
|
||
|
typedef enum {
|
||
|
//SubmenuIndex
|
||
|
SubmenuIndexSubRemOpenMapFile,
|
||
|
SubmenuIndexSubRemRemoteView,
|
||
|
SubmenuIndexSubRemAbout,
|
||
|
|
||
|
//SubRemCustomEvent
|
||
|
SubRemCustomEventViewRemoteStartUP = 100,
|
||
|
SubRemCustomEventViewRemoteStartDOWN,
|
||
|
SubRemCustomEventViewRemoteStartLEFT,
|
||
|
SubRemCustomEventViewRemoteStartRIGHT,
|
||
|
SubRemCustomEventViewRemoteStartOK,
|
||
|
SubRemCustomEventViewRemoteBack,
|
||
|
SubRemCustomEventViewRemoteStop,
|
||
|
SubRemCustomEventViewRemoteForcedStop,
|
||
|
} SubRemCustomEvent;
|