blob: 2abfe0a9fb686cf813f9643ee0c74d3115246e3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#![no_std]
#![no_main]
use embassy_executor::Spawner;
use embassy_time::Timer;
use hal::gpio::{DriveStrength, Input, Pull, SlewRate};
use {defmt_rtt as _, embassy_mcxa as hal, panic_probe as _};
#[embassy_executor::main]
async fn main(_spawner: Spawner) {
let p = hal::init(hal::config::Config::default());
defmt::info!("Button example");
let monitor = Input::new(p.P1_7, Pull::Disabled, DriveStrength::Normal, SlewRate::Slow);
loop {
defmt::info!("Pin level is {:?}", monitor.get_level());
Timer::after_millis(1000).await;
}
}
|