Make Harrogate constants pub

This commit is contained in:
Tangent Wantwight 2020-10-07 19:38:26 -04:00
parent b31c7beaa0
commit 809f848252
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@ use lights::Lights;
use lights::PixelIterator;
use lights::rgb::Rgb;
const PORCH_BACK_LEN: usize = 150;
const PORCH_FRONT_LEN: usize = 150;
pub const PORCH_BACK_LEN: usize = 150;
pub const PORCH_FRONT_LEN: usize = 150;
const PORCH_WHITE: Rgb = Rgb(255, 208, 160);