fixed typo

This commit is contained in:
2026-05-20 18:41:40 +02:00
parent 95143a44b9
commit 227ac0feb7
2 changed files with 16 additions and 16 deletions

View File

@@ -63,11 +63,11 @@ async fn main(spawner: Spawner) {
// let result = device.read_temperature().await;
// info!("T: {:?}", result);
// device
// .trigger_messurement()
// .trigger_measurement()
// .await
// .expect("Failed to trigger trigger_messurement");
// .expect("Failed to trigger trigger_measurement");
match device.read_messurement() {
match device.read_measurement() {
Ok(d) => info!("Got: {:?}", d),
Err(e) => error!("Error: {:?}", e),
}