From c686dde67b647203bf3d65f42354876bdc58d570 Mon Sep 17 00:00:00 2001 From: rhetenor Date: Sat, 22 Aug 2026 18:42:07 +0200 Subject: [PATCH] switch ok to gpio0 and back to gpio8, because --- src/bin/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/main.rs b/src/bin/main.rs index 617b405..e905456 100644 --- a/src/bin/main.rs +++ b/src/bin/main.rs @@ -99,8 +99,8 @@ async fn main(spawner: Spawner) { down: Input::new(peripherals.GPIO39, button_config), left: Input::new(peripherals.GPIO40, button_config), right: Input::new(peripherals.GPIO41, button_config), - back: Input::new(peripherals.GPIO42, button_config), - ok: Input::new(peripherals.GPIO45, button_config), + back: Input::new(peripherals.GPIO8, button_config), + ok: Input::new(peripherals.GPIO0, button_config), }; log::info!("Setup complete, entering main loop");