diff options
| author | JF002 <JF002@users.noreply.github.com> | 2021-02-14 13:26:49 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-14 13:26:49 (GMT) |
| commit | 0ad10a381772f97cb227fba9e1121a833c5bd026 (patch) | |
| tree | 6883f02d33cc22f539c73728bcd732cd5254c8c7 /src/components/ble/NotificationManager.h | |
| parent | 6c03c970056c2aee833bfd195dcd9ca28520d37b (diff) | |
| parent | 97a1c4b3d7be04ddb24fea096add41b44629a5f9 (diff) | |
Merge branch 'develop' into Hrs3300_SetGain_remove_warnings
Diffstat (limited to 'src/components/ble/NotificationManager.h')
| -rw-r--r-- | src/components/ble/NotificationManager.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/ble/NotificationManager.h b/src/components/ble/NotificationManager.h index 036d2ed..075a9a4 100644 --- a/src/components/ble/NotificationManager.h +++ b/src/components/ble/NotificationManager.h @@ -28,6 +28,8 @@ namespace Pinetime { Notification GetPrevious(Notification::Id id); bool ClearNewNotificationFlag(); bool AreNewNotificationsAvailable(); + bool IsVibrationEnabled(); + void ToggleVibrations(); static constexpr size_t MaximumMessageSize() { return MessageSize; }; size_t NbNotifications() const; @@ -40,6 +42,7 @@ namespace Pinetime { uint8_t writeIndex = 0; bool empty = true; std::atomic<bool> newNotification{false}; + bool vibrationEnabled = true; }; } }
\ No newline at end of file |
