mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 14:53:03 +00:00
495b8b739a
With the embedded-hal rc3 update I changed them to require `&mut self`, but in retrospect I think `&self` is better, for extra flexibility. This PR reverts the changes from the rc3 update to inherent methods.
24 lines
417 B
Rust
24 lines
417 B
Rust
#![no_std]
|
|
#![no_main]
|
|
|
|
use defmt::*;
|
|
use embassy_stm32::gpio::{Input, Pull};
|
|
use {defmt_rtt as _, panic_probe as _};
|
|
|
|
#[cortex_m_rt::entry]
|
|
fn main() -> ! {
|
|
info!("Hello World!");
|
|
|
|
let p = embassy_stm32::init(Default::default());
|
|
|
|
let button = Input::new(p.PC13, Pull::Up);
|
|
|
|
loop {
|
|
if button.is_high() {
|
|
info!("high");
|
|
} else {
|
|
info!("low");
|
|
}
|
|
}
|
|
}
|