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

22 lines
602 B
Rust
Raw Normal View History

2021-03-29 04:14:17 +02:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
use embassy_executor::executor::Spawner;
use embassy_executor::time::{Duration, Timer};
2021-03-29 04:14:17 +02:00
use embassy_nrf::gpio::{Level, Output, OutputDrive};
use embassy_nrf::Peripherals;
2022-06-12 22:15:44 +02:00
use {defmt_rtt as _, panic_probe as _};
#[embassy_executor::main]
2021-05-17 11:48:58 +02:00
async fn main(_spawner: Spawner, p: Peripherals) {
2021-03-29 04:14:17 +02:00
let mut led = Output::new(p.P0_13, Level::Low, OutputDrive::Standard);
loop {
led.set_high();
2021-03-29 04:14:17 +02:00
Timer::after(Duration::from_millis(300)).await;
led.set_low();
2021-03-29 04:14:17 +02:00
Timer::after(Duration::from_millis(300)).await;
}
}