InfiniTime/src/systemtask/Messages.h

36 lines
786 B
C
Raw Normal View History

#pragma once
namespace Pinetime {
namespace System {
enum class Messages {
GoToSleep,
GoToRunning,
TouchWakeUp,
OnNewTime,
OnNewNotification,
OnTimerDone,
OnNewCall,
BleConnected,
UpdateTimeOut,
BleFirmwareUpdateStarted,
BleFirmwareUpdateFinished,
OnTouchEvent,
2021-10-25 09:53:14 +00:00
OnButtonPushed,
OnButtonLongPressed,
OnButtonLongerPressed,
OnButtonDoubleClicked,
HandleButtonEvent,
OnDisplayTaskSleeping,
EnableSleeping,
DisableSleeping,
OnNewDay,
2021-09-10 22:40:13 +00:00
OnChargingEvent,
2021-10-25 09:53:14 +00:00
ReloadIdleTimer,
2021-09-10 22:40:13 +00:00
SetOffAlarm,
StopRinging,
MeasureBatteryTimerExpired,
BatteryPercentageUpdated,
};
}
}