blob: 943edbb1518d8e5f73338a05605ca23a848d46b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#![no_std]
#![no_main]
use embassy_executor::Spawner;
use embassy_time::Timer;
use hal::gpio::{Input, Pull};
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");
// This button is labeled "WAKEUP" on the FRDM-MCXA276
// The board already has a 10K pullup
let monitor = Input::new(p.P1_7, Pull::Disabled);
loop {
defmt::info!("Pin level is {:?}", monitor.get_level());
Timer::after_millis(1000).await;
}
}
|