blob: f617774dfb68b12c65d5c6a8847d0d2af2be2f6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
namespace Pinetime {
namespace Applications {
namespace Display {
enum class Messages : uint8_t {
GoToSleep, GoToRunning, UpdateDateTime, UpdateBleConnection, UpdateBatteryLevel, TouchEvent, ButtonPushed,
NewNotification, BleFirmwareUpdateStarted
};
}
}
}
|