summaryrefslogtreecommitdiff
path: root/examples/stm32wl55/src/bin/blinky.rs
blob: 3c12a79d085fceebd58d9f97f0e23cf9983ff1f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]

#[path = "../example_common.rs"]
mod example_common;
use embassy::executor::Spawner;
use embassy::time::{Duration, Timer};
use embassy_stm32::gpio::{Level, Output, Speed};
use embassy_stm32::Peripherals;
use embedded_hal::digital::v2::OutputPin;
use example_common::*;

#[embassy::main]
async fn main(_spawner: Spawner, p: Peripherals) {
    info!("Hello World!");

    let mut led = Output::new(p.PB15, Level::High, Speed::Low);

    loop {
        info!("high");
        unwrap!(led.set_high());
        Timer::after(Duration::from_millis(500)).await;

        info!("low");
        unwrap!(led.set_low());
        Timer::after(Duration::from_millis(500)).await;
    }
}