diff options
| author | Jean-François Milants <jf@codingfield.com> | 2021-02-14 13:19:46 (GMT) |
|---|---|---|
| committer | Jean-François Milants <jf@codingfield.com> | 2021-02-14 13:19:46 (GMT) |
| commit | 07a0d7cf2de8244e481df697ebd9c85eb413163f (patch) | |
| tree | 983bd7fb1780c433aa12331377e67ced9b46b3a8 /src/components/ble | |
| parent | 4c3803450e33e321dd2f90bdf62b9abe99f1e491 (diff) | |
| parent | 5fdfb2112e2f6413c4d01c74dd04492e27a6d406 (diff) | |
Merge branch 'jlukanc1-upstream-dev' into develop
Diffstat (limited to 'src/components/ble')
| -rw-r--r-- | src/components/ble/NotificationManager.cpp | 8 | ||||
| -rw-r--r-- | src/components/ble/NotificationManager.h | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/components/ble/NotificationManager.cpp b/src/components/ble/NotificationManager.cpp index dabcb4b..36abf02 100644 --- a/src/components/ble/NotificationManager.cpp +++ b/src/components/ble/NotificationManager.cpp @@ -71,6 +71,14 @@ bool NotificationManager::AreNewNotificationsAvailable() { return newNotification; } +bool NotificationManager::IsVibrationEnabled() { + return vibrationEnabled; +} + +void NotificationManager::ToggleVibrations() { + vibrationEnabled = !vibrationEnabled; +} + bool NotificationManager::ClearNewNotificationFlag() { return newNotification.exchange(false); } 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 |
