2021-10-18 13:24:31 +00:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
|
|
|
#[path = "../example_common.rs"]
|
|
|
|
mod example_common;
|
|
|
|
use example_common::*;
|
|
|
|
|
|
|
|
use embassy::{
|
|
|
|
executor::Spawner,
|
|
|
|
time::{Duration, Timer},
|
|
|
|
};
|
|
|
|
use embassy_nrf::{interrupt, temp::Temp, Peripherals};
|
|
|
|
|
|
|
|
#[embassy::main]
|
|
|
|
async fn main(_spawner: Spawner, p: Peripherals) {
|
|
|
|
let irq = interrupt::take!(TEMP);
|
|
|
|
let mut temp = Temp::new(p.TEMP, irq);
|
|
|
|
|
|
|
|
loop {
|
|
|
|
let value = temp.read().await;
|
2021-10-19 13:32:16 +00:00
|
|
|
info!("temperature: {}℃", value.to_num::<u16>());
|
2021-10-18 13:24:31 +00:00
|
|
|
Timer::after(Duration::from_secs(1)).await;
|
|
|
|
}
|
|
|
|
}
|