2021-03-29 02:14:17 +00:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
#[path = "../example_common.rs"]
|
|
|
|
mod example_common;
|
|
|
|
|
2021-07-31 15:51:40 +00:00
|
|
|
use defmt::unwrap;
|
2021-03-29 02:14:17 +00:00
|
|
|
use embassy::executor::Spawner;
|
|
|
|
use embassy::time::{Duration, Timer};
|
|
|
|
use embassy_nrf::gpio::{Level, Output, OutputDrive};
|
|
|
|
use embassy_nrf::Peripherals;
|
|
|
|
use embedded_hal::digital::v2::OutputPin;
|
|
|
|
|
|
|
|
#[embassy::main]
|
2021-05-17 09:48:58 +00:00
|
|
|
async fn main(_spawner: Spawner, p: Peripherals) {
|
2021-03-29 02:14:17 +00:00
|
|
|
let mut led = Output::new(p.P0_13, Level::Low, OutputDrive::Standard);
|
|
|
|
|
|
|
|
loop {
|
2021-07-31 15:51:40 +00:00
|
|
|
unwrap!(led.set_high());
|
2021-03-29 02:14:17 +00:00
|
|
|
Timer::after(Duration::from_millis(300)).await;
|
2021-07-31 15:51:40 +00:00
|
|
|
unwrap!(led.set_low());
|
2021-03-29 02:14:17 +00:00
|
|
|
Timer::after(Duration::from_millis(300)).await;
|
|
|
|
}
|
|
|
|
}
|