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