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

26 lines
621 B
Rust
Raw Normal View History

2021-03-29 21:33:46 +02:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
use defmt::*;
use embassy_executor::executor::Spawner;
use embassy_executor::time::{Duration, Timer};
2021-03-29 21:33:46 +02:00
use embassy_rp::{gpio, Peripherals};
2021-04-05 22:36:35 +02:00
use gpio::{Level, Output};
2022-06-12 22:15:44 +02:00
use {defmt_rtt as _, panic_probe as _};
#[embassy_executor::main]
async fn main(_spawner: Spawner, p: Peripherals) {
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 {
info!("led on!");
led.set_high();
2021-07-12 02:45:42 +02:00
Timer::after(Duration::from_secs(1)).await;
2021-03-29 21:33:46 +02:00
info!("led off!");
led.set_low();
2021-07-12 02:45:42 +02:00
Timer::after(Duration::from_secs(1)).await;
2021-03-29 21:33:46 +02:00
}
}