#![no_std]
#![no_main]
use panic_halt as _;
#[arduino_hal::entry]
fn main() -> ! {
let dp = arduino_hal::Peripherals::take().unwrap();
let pins = arduino_hal::pins!(dp);
let mut led = pins.d13.into_output();
loop {
led.toggle();
arduino_hal::delay_ms(1000);
}
}
ERC Warnings
and1:B: Input pin not driven
and2:B: Input pin not driven
and3:B: Input pin not driven
and4:B: Input pin not driven
and5:B: Input pin not driven
and6:B: Input pin not driven
and7:B: Input pin not driven
and8:B: Input pin not driven
and9:B: Input pin not driven
and10:B: Input pin not driven
2 additional warning(s) hidden