InfiniTime/src/displayapp/Messages.h

30 lines
622 B
C
Raw Normal View History

#pragma once
2021-11-03 22:02:30 +00:00
#include <cstdint>
namespace Pinetime {
namespace Applications {
namespace Display {
enum class Messages : uint8_t {
GoToSleep,
GoToRunning,
UpdateDateTime,
UpdateBleConnection,
TouchEvent,
ButtonPushed,
2021-10-25 09:53:14 +00:00
ButtonLongPressed,
ButtonLongerPressed,
ButtonDoubleClicked,
NewNotification,
TimerDone,
BleFirmwareUpdateStarted,
UpdateTimeOut,
DimScreen,
2021-09-10 22:40:13 +00:00
RestoreBrightness,
2022-01-02 21:49:18 +00:00
ShowPairingKey,
2021-11-07 10:50:33 +00:00
AlarmTriggered,
Clock,
BleRadioEnableToggle
};
}
}
}