blob: 0f6c8cbae2deafde4463b19b9928d78366be0401 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#![no_std]
#![no_main]
use embassy_executor::Spawner;
use embassy_time::Timer;
use hal::clocks::config::Div8;
use hal::config::Config;
use hal::i2c::controller::{self, I2c, Speed};
use tmp108::Tmp108;
use {defmt_rtt as _, embassy_mcxa as hal, panic_probe as _};
#[embassy_executor::main]
async fn main(_spawner: Spawner) {
let mut config = Config::default();
config.clock_cfg.sirc.fro_lf_div = Div8::from_divisor(1);
let p = hal::init(config);
defmt::info!("I2C example");
let mut config = controller::Config::default();
config.speed = Speed::Standard;
let i2c = I2c::new_blocking(p.LPI2C3, p.P3_27, p.P3_28, config).unwrap();
let mut tmp = Tmp108::new_with_a0_gnd(i2c);
loop {
let temperature = tmp.temperature().unwrap();
defmt::info!("Temperature: {}C", temperature);
Timer::after_secs(1).await;
}
}
|