From 2558388ea1bae9c03afca9bd1871689829ad34bd Mon Sep 17 00:00:00 2001 From: Tony Stork Date: Thu, 5 Oct 2023 22:27:34 -0400 Subject: [PATCH] Change living room strip to match quarters rather than segments --- lightfx/processing-start.js | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/lightfx/processing-start.js b/lightfx/processing-start.js index 509df02..98490db 100644 --- a/lightfx/processing-start.js +++ b/lightfx/processing-start.js @@ -4,18 +4,17 @@ const halfLivingRoom1 = [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19] const halfLivingRoom2 = [20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39] -// Individual strip segments for living room LED strip -const segLivingRoom1 = [0,1,2,3,4,5,6,7] -const segLivingRoom2 = [8,9,10,11,12,13,14,15] -const segLivingRoom3 = [16,17,18,19,20,21,22,23] -const segLivingRoom4 = [24,25,26,27,28,29,30,31] -const segLivingRoom5 = [32,33,34,35,36,37,38,39] +// Quarters for living room LED strip +const segLivingRoom1 = [0,1,2,3,4,5,6,7,8,9] +const segLivingRoom2 = [10,11,12,13,14,15,16,17,18,19] +const segLivingRoom3 = [20,21,22,23,24,25,26,27,28,29] +const segLivingRoom4 = [30,31,32,33,34,35,36,37,38,39] // Half and half for basement LED strip const halfBasement1 = [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15] const halfBasement2 = [16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31] -// Individual strip segments for basement LED strip +// Quarters for basement LED strip const segBasement1 = [0,1,2,3,4,5,6,7] const segBasement2 = [8,9,10,11,12,13,14,15] const segBasement3 = [16,17,18,19,20,21,22,23] @@ -28,7 +27,6 @@ flow.set("segLivingRoom1", segLivingRoom1, "diskCon") flow.set("segLivingRoom2", segLivingRoom2, "diskCon") flow.set("segLivingRoom3", segLivingRoom3, "diskCon") flow.set("segLivingRoom4", segLivingRoom4, "diskCon") -flow.set("segLivingRoom5", segLivingRoom5, "diskCon") flow.set("halfBasement1", halfBasement1, "diskCon") flow.set("halfBasement2", halfBasement1, "diskCon")