summaryrefslogtreecommitdiff
path: root/src/components/ble/NotificationManager.cpp
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2021-02-14 14:19:30 +0100
committerJean-François Milants <jf@codingfield.com>2021-02-14 14:19:30 +0100
commit5fdfb2112e2f6413c4d01c74dd04492e27a6d406 (patch)
tree983bd7fb1780c433aa12331377e67ced9b46b3a8 /src/components/ble/NotificationManager.cpp
parent4c3803450e33e321dd2f90bdf62b9abe99f1e491 (diff)
parent1e2cc3ce91b402459790332b84e3f8dcbe5dc340 (diff)
Fix merge conflict.
Diffstat (limited to 'src/components/ble/NotificationManager.cpp')
-rw-r--r--src/components/ble/NotificationManager.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/ble/NotificationManager.cpp b/src/components/ble/NotificationManager.cpp
index dabcb4ba..36abf026 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);
}