aboutsummaryrefslogtreecommitdiff
path: root/examples/nrf/src/bin
diff options
context:
space:
mode:
Diffstat (limited to 'examples/nrf/src/bin')
-rw-r--r--examples/nrf/src/bin/temp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/nrf/src/bin/temp.rs b/examples/nrf/src/bin/temp.rs
index 04d1d58fe..af9775f5a 100644
--- a/examples/nrf/src/bin/temp.rs
+++ b/examples/nrf/src/bin/temp.rs
@@ -20,7 +20,7 @@ async fn main(_spawner: Spawner, p: Peripherals) {
20 20
21 loop { 21 loop {
22 let value = temp.read().await; 22 let value = temp.read().await;
23 info!("temperature: {}", value.to_num::<u16>()); 23 info!("temperature: {}", value.to_num::<u16>());
24 Timer::after(Duration::from_secs(1)).await; 24 Timer::after(Duration::from_secs(1)).await;
25 } 25 }
26} 26}