InfiniTime/src/displayapp/Messages.h

25 lines
488 B
C
Raw Normal View History

#pragma once
namespace Pinetime {
namespace Applications {
namespace Display {
enum class Messages : uint8_t {
GoToSleep,
GoToRunning,
UpdateDateTime,
UpdateBleConnection,
TouchEvent,
ButtonPushed,
NewNotification,
TimerDone,
BleFirmwareUpdateStarted,
UpdateTimeOut,
DimScreen,
2021-09-10 22:40:13 +00:00
RestoreBrightness,
2022-01-02 21:49:18 +00:00
ShowPairingKey,
2021-11-07 10:50:33 +00:00
AlarmTriggered,
Clock
};
}
}
}