2021-01-26 19:31:45 +00:00
|
|
|
#pragma once
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Applications {
|
|
|
|
namespace Display {
|
|
|
|
enum class Messages : uint8_t {
|
2021-04-18 17:28:14 +00:00
|
|
|
GoToSleep,
|
|
|
|
GoToRunning,
|
|
|
|
UpdateDateTime,
|
|
|
|
UpdateBleConnection,
|
|
|
|
TouchEvent,
|
|
|
|
ButtonPushed,
|
|
|
|
NewNotification,
|
2021-05-20 18:43:54 +00:00
|
|
|
TimerDone,
|
2021-04-18 17:28:14 +00:00
|
|
|
BleFirmwareUpdateStarted,
|
2021-07-24 18:29:10 +00:00
|
|
|
UpdateTimeOut,
|
|
|
|
DimScreen,
|
2021-09-10 22:40:13 +00:00
|
|
|
RestoreBrightness,
|
2021-11-07 10:50:33 +00:00
|
|
|
AlarmTriggered,
|
|
|
|
Clock
|
2021-01-26 19:31:45 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2021-07-24 18:29:10 +00:00
|
|
|
}
|