19 lines
387 B
C++
19 lines
387 B
C++
#pragma once
|
|
namespace Pinetime {
|
|
namespace Applications {
|
|
namespace Display {
|
|
enum class Messages : uint8_t {
|
|
GoToSleep,
|
|
GoToRunning,
|
|
UpdateDateTime,
|
|
UpdateBleConnection,
|
|
UpdateBatteryLevel,
|
|
TouchEvent,
|
|
ButtonPushed,
|
|
NewNotification,
|
|
BleFirmwareUpdateStarted,
|
|
UpdateTimeOut
|
|
};
|
|
}
|
|
}
|
|
} |