holiday_lights/harrogate/src/main.rs

17 lines
238 B
Rust

#![no_std]
#![no_main]
use lights_hal::{boot, entry};
pub use lights_hal::delay;
mod door_light;
#[entry]
fn main() -> ! {
let mut lights = boot();
#[cfg(not(feature = "replace-default"))]
door_light::run(&mut lights);
}