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,
|
|
|
|
UpdateBatteryLevel,
|
|
|
|
TouchEvent,
|
|
|
|
ButtonPushed,
|
|
|
|
NewNotification,
|
2021-05-20 18:43:54 +00:00
|
|
|
TimerDone,
|
2021-04-18 17:28:14 +00:00
|
|
|
BleFirmwareUpdateStarted,
|
|
|
|
UpdateTimeOut
|
2021-01-26 19:31:45 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|