InfiniTime/src/displayapp/Messages.h
2021-11-15 22:02:49 +01:00

27 lines
553 B
C++

#pragma once
#include <cstdint>
namespace Pinetime {
namespace Applications {
namespace Display {
enum class Messages : uint8_t {
GoToSleep,
GoToRunning,
UpdateDateTime,
UpdateBleConnection,
TouchEvent,
ButtonPushed,
ButtonLongPressed,
ButtonLongerPressed,
ButtonDoubleClicked,
NewNotification,
TimerDone,
BleFirmwareUpdateStarted,
UpdateTimeOut,
DimScreen,
RestoreBrightness,
AlarmTriggered
};
}
}
}