From 6a21816e42c4b1e548b91ce1aca3df148b1897e1 Mon Sep 17 00:00:00 2001 From: Tempest Date: Sat, 4 Oct 2025 19:11:03 +0700 Subject: [PATCH] Ready for delivery --- src/controllerSoftware/app.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/controllerSoftware/app.py b/src/controllerSoftware/app.py index cd18cd0b..c126e0f1 100644 --- a/src/controllerSoftware/app.py +++ b/src/controllerSoftware/app.py @@ -84,17 +84,17 @@ async def set_full_matrix_on_ble(colorSeries): # ===================================================================== # 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 - temp_color_3 = colorSeries[3] - colorSeries[3] = colorSeries[7] - colorSeries[7] = temp_color_3 + #temp_color_3 = colorSeries[3] + #colorSeries[3] = colorSeries[7] + #colorSeries[7] = temp_color_3 # Swap data for lamps at positions 12 and 24 - temp_color_12 = colorSeries[12] - colorSeries[12] = colorSeries[24] - colorSeries[24] = temp_color_12 + #temp_color_12 = colorSeries[12] + #colorSeries[12] = colorSeries[24] + #colorSeries[24] = temp_color_12 # ===================================================================== if DEBUG_MODE: