Log number of lights

This commit is contained in:
Austen Adler 2023-02-20 16:58:36 -05:00
parent 1eb6f0f51a
commit 0c84fda192

View File

@ -53,15 +53,19 @@ fn main() -> ProgramResult<()> {
let (message_tx, message_rx) = channel::<error::Message>(); let (message_tx, message_rx) = channel::<error::Message>();
make_child(message_tx.clone(), move |message_tx| -> ProgramResult<()> { let num_lights: u16 = std::env::var("NUM_LIGHTS")
let mut strip = LedStrip::new(strip::Config {
// I have 89 right now, but start off with 20
num_lights: std::env::var("NUM_LIGHTS")
.as_ref() .as_ref()
.map(String::as_str) .map(String::as_str)
.unwrap_or("89") .unwrap_or("89")
.parse() .parse()
.unwrap(), .unwrap();
eprintln!("Number of lights: {num_lights}");
make_child(message_tx.clone(), move |message_tx| -> ProgramResult<()> {
let mut strip = LedStrip::new(strip::Config {
// I have 89 right now, but start off with 20
num_lights,
// Skip 14 lights // Skip 14 lights
shift_lights: 14, shift_lights: 14,
// Scaling factor (scale 0..255) // Scaling factor (scale 0..255)