1
0
Fork 0
InfiniTime/src/displayapp/Messages.h

27 lines
553 B
C
Raw Normal View History

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