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

25 lines
529 B
Rust
Raw Normal View History

2021-03-29 21:33:46 +02:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
#[path = "../example_common.rs"]
mod example_common;
use embassy::executor::Spawner;
2021-04-05 22:36:35 +02:00
use embassy_rp::gpio::{Input, Level, Output, Pull};
2021-03-29 21:33:46 +02:00
use embassy_rp::Peripherals;
#[embassy::main]
async fn main(_spawner: Spawner, p: Peripherals) {
2021-03-29 21:33:46 +02:00
let button = Input::new(p.PIN_28, Pull::Up);
2021-04-05 22:36:35 +02:00
let mut led = Output::new(p.PIN_25, Level::Low);
2021-03-29 21:33:46 +02:00
loop {
if button.is_high() {
led.set_high();
2021-04-05 22:36:35 +02:00
} else {
led.set_low();
2021-04-05 22:36:35 +02:00
}
2021-03-29 21:33:46 +02:00
}
}