From 7c107e739a618f4dacf086ffbe5f44a64ca27d92 Mon Sep 17 00:00:00 2001 From: ailurux Date: Thu, 6 Jun 2024 17:05:39 +1000 Subject: [PATCH] Add basic bluetooth queue controls --- src/tangara/ui/ui_fsm.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tangara/ui/ui_fsm.cpp b/src/tangara/ui/ui_fsm.cpp index e367586b..3bd19bc5 100644 --- a/src/tangara/ui/ui_fsm.cpp +++ b/src/tangara/ui/ui_fsm.cpp @@ -418,8 +418,10 @@ void UiState::react(const system_fsm::BluetoothEvent& ev) { case SimpleEvent::kVolDown: break; case SimpleEvent::kForward: + sServices->track_queue().next(); break; case SimpleEvent::kBackward: + sServices->track_queue().previous(); break; case SimpleEvent::kRewind: break;