embassy/examples/stm32l4/src/bin/button.rs

27 lines
524 B
Rust
Raw Normal View History

2021-06-08 16:36:47 +02:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
#[path = "../example_common.rs"]
mod example_common;
2021-07-24 13:57:11 +02:00
use embassy_stm32::gpio::{Input, Pull};
use embedded_hal::digital::v2::InputPin;
2021-06-08 16:36:47 +02:00
use example_common::*;
#[cortex_m_rt::entry]
fn main() -> ! {
2021-06-08 16:36:47 +02:00
info!("Hello World!");
let p = embassy_stm32::init(Default::default());
2021-06-08 16:36:47 +02:00
let button = Input::new(p.PC13, Pull::Up);
loop {
if unwrap!(button.is_high()) {
2021-06-08 16:36:47 +02:00
info!("high");
} else {
info!("low");
}
}
}