From 91dfc7f708d76874a6391a9f2187878cd050bdac Mon Sep 17 00:00:00 2001 From: Karl Hudgell Date: Fri, 20 Sep 2024 20:52:07 +0100 Subject: [PATCH] skip then play --- buttons.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/buttons.py b/buttons.py index d953378..bb996da 100644 --- a/buttons.py +++ b/buttons.py @@ -28,7 +28,8 @@ def button_callback_1(channel): def button_callback_2(channel): print("Button 2 pressed!") client = create_client() - control_player(client, "PAUSE") + control_player(client, "SKIP") + control_player(client, "PLAY") def button_callback_3(channel): print("Button 3 pressed!")