2021-03-29 21:33:46 +02:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
|
|
|
use defmt::*;
|
|
|
|
use embassy::executor::Spawner;
|
2021-07-12 02:45:42 +02:00
|
|
|
use embassy::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 _};
|
2022-04-02 04:35:06 +02:00
|
|
|
|
2021-03-29 21:33:46 +02:00
|
|
|
#[embassy::main]
|
2021-05-12 01:57:01 +02:00
|
|
|
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!");
|
2021-06-25 06:20:45 +02:00
|
|
|
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!");
|
2021-06-25 06:20:45 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|