summaryrefslogtreecommitdiff
path: root/src/components/ble/NotificationManager.h
diff options
context:
space:
mode:
authorpetter <39340152+petterhs@users.noreply.github.com>2021-02-07 13:31:02 +0100
committerpetter <39340152+petterhs@users.noreply.github.com>2021-02-07 13:31:02 +0100
commit1e2cc3ce91b402459790332b84e3f8dcbe5dc340 (patch)
tree4d75e4dad6ed4fdb7fa62d964ae007982ca614b7 /src/components/ble/NotificationManager.h
parent7ab153cd7690db8a43bde1af792edecc5e0f8d5d (diff)
add vibration toggle
Diffstat (limited to 'src/components/ble/NotificationManager.h')
-rw-r--r--src/components/ble/NotificationManager.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/ble/NotificationManager.h b/src/components/ble/NotificationManager.h
index 036d2ed9..4dce4eda 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