InfiniTime/src/displayapp/Messages.h

28 lines
577 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,
ShowPairingKey,
2021-09-10 22:40:13 +00:00
AlarmTriggered
};
}
}
}