Start second light display
This commit is contained in:
parent
5059c5d0d1
commit
b6b53c4dbc
3 changed files with 66 additions and 0 deletions
harrogate/src
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue