First stab at a december display

This commit is contained in:
Tangent 2019-11-23 18:55:21 -05:00
parent d53b000bb3
commit 5d8dd68d47
4 changed files with 71 additions and 1 deletions
harrogate/src

View file

@ -5,12 +5,16 @@ use lights_hal::{boot, entry};
pub use lights_hal::delay;
mod december_2019;
mod door_light;
#[entry]
fn main() -> ! {
let mut lights = boot();
#[cfg(feature = "december-2019")]
december_2019::run(&mut lights);
#[cfg(not(feature = "replace-default"))]
door_light::run(&mut lights);
}