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

34 lines
665 B
Rust
Raw Normal View History

2021-06-08 16:36:47 +02:00
#![no_std]
#![no_main]
#![feature(trait_alias)]
#![feature(type_alias_impl_trait)]
#![allow(incomplete_features)]
#[path = "../example_common.rs"]
mod example_common;
use embassy_stm32::dbgmcu::Dbgmcu;
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!");
2021-07-15 00:30:31 +02:00
unsafe {
Dbgmcu::enable_all();
2021-07-15 00:30:31 +02:00
}
2021-06-08 16:36:47 +02:00
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 button.is_high().unwrap() {
info!("high");
} else {
info!("low");
}
}
}