added led ws 2812 and buzzer stuff

This commit is contained in:
PC_WSL
2025-05-05 12:34:41 +02:00
parent f3c4e9884e
commit e14f703a76
8 changed files with 226 additions and 40 deletions

View File

@@ -13,6 +13,10 @@ mod id_store;
mod parser;
mod pm3;
mod webserver;
mod color;
mod led;
mod buzzer;
const STORE_PATH: &str = "./data.json";
@@ -85,6 +89,10 @@ async fn main() -> Result<(), Box<dyn Error>> {
}
});
tokio::spawn(async move {
})
match start_webserver(store.clone()).await {
Ok(()) => {}
Err(e) => {