Start second light display

This commit is contained in:
Tangent 2019-12-21 17:22:50 -05:00
parent 5059c5d0d1
commit b6b53c4dbc
3 changed files with 66 additions and 0 deletions
harrogate/src

View file

@ -6,6 +6,7 @@ use lights_hal::{boot, entry};
pub use lights_hal::delay;
mod december_01_2019;
mod december_21_2019;
mod door_light;
#[entry]
@ -15,6 +16,9 @@ fn main() -> ! {
#[cfg(feature = "december-01-2019")]
december_01_2019::run(&mut lights);
#[cfg(feature = "december-21-2019")]
december_21_2019::run(&mut lights);
#[cfg(not(feature = "replace-default"))]
door_light::run(&mut lights);
}