InfiniTime/src/displayapp/Messages.h

23 lines
449 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,
NewNotification,
TimerDone,
BleFirmwareUpdateStarted,
UpdateTimeOut,
DimScreen,
2021-09-10 22:40:13 +00:00
RestoreBrightness,
AlarmTriggered
};
}
}
}