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