2021-01-26 14:31:45 -05:00
|
|
|
#pragma once
|
2021-11-03 18:02:30 -04:00
|
|
|
#include <cstdint>
|
2021-01-26 14:31:45 -05:00
|
|
|
namespace Pinetime {
|
|
|
|
namespace Applications {
|
|
|
|
namespace Display {
|
|
|
|
enum class Messages : uint8_t {
|
2021-04-18 13:28:14 -04:00
|
|
|
GoToSleep,
|
|
|
|
GoToRunning,
|
|
|
|
UpdateDateTime,
|
|
|
|
UpdateBleConnection,
|
|
|
|
TouchEvent,
|
|
|
|
ButtonPushed,
|
2021-10-25 05:53:14 -04:00
|
|
|
ButtonLongPressed,
|
|
|
|
ButtonLongerPressed,
|
|
|
|
ButtonDoubleClicked,
|
2021-04-18 13:28:14 -04:00
|
|
|
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,
|
2021-09-10 18:40:13 -04:00
|
|
|
RestoreBrightness,
|
2022-01-02 16:49:18 -05:00
|
|
|
ShowPairingKey,
|
2021-11-07 05:50:33 -05:00
|
|
|
AlarmTriggered,
|
|
|
|
Clock
|
2021-01-26 14:31:45 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2021-07-24 14:29:10 -04:00
|
|
|
}
|