InfiniTime/src/displayapp/Messages.h
2021-11-07 10:50:33 +00:00

24 lines
464 B
C++

#pragma once
namespace Pinetime {
namespace Applications {
namespace Display {
enum class Messages : uint8_t {
GoToSleep,
GoToRunning,
UpdateDateTime,
UpdateBleConnection,
TouchEvent,
ButtonPushed,
NewNotification,
TimerDone,
BleFirmwareUpdateStarted,
UpdateTimeOut,
DimScreen,
RestoreBrightness,
AlarmTriggered,
Clock
};
}
}
}