Change living room strip to match quarters rather than segments
This commit is contained in:
@ -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")
|
||||
|
Reference in New Issue
Block a user