31 lines
676 B
C++
31 lines
676 B
C++
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace Pinetime {
|
|
namespace Applications {
|
|
namespace Display {
|
|
enum class Messages : uint8_t {
|
|
GoToSleep,
|
|
GoToRunning,
|
|
UpdateBleConnection,
|
|
TouchEvent,
|
|
ButtonPushed,
|
|
ButtonLongPressed,
|
|
ButtonLongerPressed,
|
|
ButtonDoubleClicked,
|
|
NewNotification,
|
|
TimerDone,
|
|
BleFirmwareUpdateStarted,
|
|
// Resets the screen timeout timer when awake
|
|
// Does nothing when asleep
|
|
NotifyDeviceActivity,
|
|
ShowPairingKey,
|
|
AlarmTriggered,
|
|
Chime,
|
|
BleRadioEnableToggle,
|
|
OnChargingEvent,
|
|
};
|
|
}
|
|
}
|
|
}
|