diff options
| author | petter <39340152+petterhs@users.noreply.github.com> | 2021-02-07 12:31:02 (GMT) |
|---|---|---|
| committer | petter <39340152+petterhs@users.noreply.github.com> | 2021-02-07 12:31:02 (GMT) |
| commit | 1e2cc3ce91b402459790332b84e3f8dcbe5dc340 (patch) | |
| tree | 4d75e4dad6ed4fdb7fa62d964ae007982ca614b7 /src/components/ble/NotificationManager.cpp | |
| parent | 7ab153cd7690db8a43bde1af792edecc5e0f8d5d (diff) | |
add vibration toggle
Diffstat (limited to 'src/components/ble/NotificationManager.cpp')
| -rw-r--r-- | src/components/ble/NotificationManager.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/ble/NotificationManager.cpp b/src/components/ble/NotificationManager.cpp index dabcb4b..fd66c19 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); } |
