From 4e988e8f014ab86d130400d807180f302662462f Mon Sep 17 00:00:00 2001 From: Philipp_EndevourOS Date: Mon, 27 Oct 2025 14:16:36 +0100 Subject: [PATCH] changed LED amount to 1 --- src/init/hardware.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init/hardware.rs b/src/init/hardware.rs index 6aec482..749691b 100644 --- a/src/init/hardware.rs +++ b/src/init/hardware.rs @@ -49,7 +49,7 @@ use crate::init::wifi; * *************************************************/ -pub const NUM_LEDS: usize = 66; +pub const NUM_LEDS: usize = 1; pub const LED_BUFFER_SIZE: usize = NUM_LEDS * 25; static SD_DET: Mutex>> = Mutex::new(RefCell::new(None));