17 lines
238 B
Rust
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);
|
||
|
}
|