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

33 lines
791 B
Rust
Raw Normal View History

2021-04-09 23:37:22 +02:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
use cortex_m_rt::entry;
use defmt::*;
2021-06-25 22:32:24 +02:00
use embassy_stm32::gpio::{Input, Level, Output, Pull, Speed};
2022-06-12 22:15:44 +02:00
use {defmt_rtt as _, panic_probe as _};
2021-04-09 23:37:22 +02:00
#[entry]
fn main() -> ! {
info!("Hello World!");
2021-05-01 03:07:17 +02:00
let p = embassy_stm32::init(Default::default());
2021-04-09 23:37:22 +02:00
let button = Input::new(p.PC13, Pull::Down);
2021-06-25 22:32:24 +02:00
let mut led1 = Output::new(p.PB0, Level::High, Speed::Low);
let _led2 = Output::new(p.PB7, Level::High, Speed::Low);
let mut led3 = Output::new(p.PB14, Level::High, Speed::Low);
2021-04-09 23:37:22 +02:00
loop {
if button.is_high() {
2021-04-09 23:37:22 +02:00
info!("high");
led1.set_high();
led3.set_low();
2021-04-09 23:37:22 +02:00
} else {
info!("low");
led1.set_low();
led3.set_high();
2021-04-09 23:37:22 +02:00
}
}
}