Ready for delivery
This commit is contained in:
parent
197c3c20e2
commit
6a21816e42
@ -84,17 +84,17 @@ async def set_full_matrix_on_ble(colorSeries):
|
|||||||
# =====================================================================
|
# =====================================================================
|
||||||
# SNIPPET TO PATCH SWAPPED LAMP POSITIONS
|
# SNIPPET TO PATCH SWAPPED LAMP POSITIONS
|
||||||
# =====================================================================
|
# =====================================================================
|
||||||
print("Patching lamp positions 3 <-> 7 and 12 <-> 24.")
|
#print("Patching lamp positions 3 <-> 7 and 12 <-> 24.")
|
||||||
|
|
||||||
# Swap data for lamps at positions 3 and 7
|
# Swap data for lamps at positions 3 and 7
|
||||||
temp_color_3 = colorSeries[3]
|
#temp_color_3 = colorSeries[3]
|
||||||
colorSeries[3] = colorSeries[7]
|
#colorSeries[3] = colorSeries[7]
|
||||||
colorSeries[7] = temp_color_3
|
#colorSeries[7] = temp_color_3
|
||||||
|
|
||||||
# Swap data for lamps at positions 12 and 24
|
# Swap data for lamps at positions 12 and 24
|
||||||
temp_color_12 = colorSeries[12]
|
#temp_color_12 = colorSeries[12]
|
||||||
colorSeries[12] = colorSeries[24]
|
#colorSeries[12] = colorSeries[24]
|
||||||
colorSeries[24] = temp_color_12
|
#colorSeries[24] = temp_color_12
|
||||||
# =====================================================================
|
# =====================================================================
|
||||||
|
|
||||||
if DEBUG_MODE:
|
if DEBUG_MODE:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user