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