summaryrefslogtreecommitdiff
path: root/src/system_fsm/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/system_fsm/include')
-rw-r--r--src/system_fsm/include/system_events.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/system_fsm/include/system_events.hpp b/src/system_fsm/include/system_events.hpp
index 4ead9f2f..54e0aa9c 100644
--- a/src/system_fsm/include/system_events.hpp
+++ b/src/system_fsm/include/system_events.hpp
@@ -9,6 +9,7 @@
#include <memory>
#include "battery.hpp"
+#include "bluetooth_types.hpp"
#include "database.hpp"
#include "haptics.hpp"
#include "service_locator.hpp"
@@ -54,7 +55,9 @@ struct BatteryStateChanged : tinyfsm::Event {
battery::Battery::BatteryState new_state;
};
-struct BluetoothDevicesChanged : tinyfsm::Event {};
+struct BluetoothEvent : tinyfsm::Event {
+ drivers::bluetooth::Event event;
+};
struct HapticTrigger : tinyfsm::Event {
drivers::Haptics::Effect effect;