InfiniTime/src/displayapp/Messages.h

26 lines
534 B
C
Raw Normal View History

#pragma once
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,
AlarmTriggered
};
}
}
}