13e3463276
* built timer app * Style improvements * making sure buttons stay hidden when the app is reopened and reappear after the timer runs out * more sensible calculations of time deltas. eliminated that mysterious scaling factor * changing the timer icon
20 lines
406 B
C++
20 lines
406 B
C++
#pragma once
|
|
namespace Pinetime {
|
|
namespace Applications {
|
|
namespace Display {
|
|
enum class Messages : uint8_t {
|
|
GoToSleep,
|
|
GoToRunning,
|
|
UpdateDateTime,
|
|
UpdateBleConnection,
|
|
UpdateBatteryLevel,
|
|
TouchEvent,
|
|
ButtonPushed,
|
|
NewNotification,
|
|
TimerDone,
|
|
BleFirmwareUpdateStarted,
|
|
UpdateTimeOut
|
|
};
|
|
}
|
|
}
|
|
} |