moved related files into own module

This commit is contained in:
2025-06-26 12:19:40 +02:00
parent 3e079c905f
commit 09725c1e04
16 changed files with 34 additions and 25 deletions

View File

@@ -8,10 +8,10 @@ use tokio::{join, time::sleep};
use crate::hardware::{Buzzer, StatusLed};
#[cfg(not(feature = "mock_pi"))]
use crate::{gpio_buzzer::GPIOBuzzer, spi_led::SpiLed};
use crate::{hardware::GPIOBuzzer, hardware::SpiLed};
#[cfg(feature = "mock_pi")]
use crate::mock::{MockBuzzer, MockLed};
use crate::hardware::{MockBuzzer, MockLed};
const LED_BLINK_DURATION: Duration = Duration::from_secs(1);