This commit is contained in:
Dion Dokter
2024-04-14 00:04:13 +02:00
parent 5f23e39052
commit b659e3d529
3 changed files with 33 additions and 15 deletions

View File

@@ -26,8 +26,6 @@ fn main() -> ! {
loop {
let v = adc.read(&mut channel);
info!("--> {}", v);
let v = adc.read(&mut temp);
info!("Temp: --> {}", v);
embassy_time::block_for(Duration::from_millis(1000));
embassy_time::block_for(Duration::from_millis(200));
}
}