summaryrefslogtreecommitdiff
path: root/src/systemtask/Messages.h
blob: 38a9c8e99dc1d106f937f7433e3930447613717a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#pragma once

namespace Pinetime {
  namespace System {
      enum class Messages {
        OnNewTime,
        OnNewNotification,
        OnNewCall,
        BleConnected,
        UpdateTimeOut,
        BleFirmwareUpdateStarted,
        BleFirmwareUpdateFinished,
        OnTouchEvent,
        HandleButtonEvent,
        HandleButtonTimerEvent,
        OnNewDay,
        OnChargingEvent,
        StopRinging,
        MeasureBatteryTimerExpired,
        BatteryPercentageUpdated,
        StartFileTransfer,
        StopFileTransfer
      };
    }
}