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