removed print debug

Signed-off-by: Ebbe Baß <ebbe.bass>
main
Ebbe Baß 2024-02-19 16:31:07 +01:00
parent e520322f16
commit 55899a9b63
1 changed files with 0 additions and 1 deletions

View File

@ -140,7 +140,6 @@ def mqtt_publisher(ti_receiver):
colors = [[p1_r, p1_g, p1_b], [p2_r, p2_g, p2_b], [p3_r, p3_g, p3_b], [p4_r, p4_g, p4_b], [p5_r, p5_g, p5_b], [p6_r, p6_g, p6_b]] colors = [[p1_r, p1_g, p1_b], [p2_r, p2_g, p2_b], [p3_r, p3_g, p3_b], [p4_r, p4_g, p4_b], [p5_r, p5_g, p5_b], [p6_r, p6_g, p6_b]]
result_str = [str(color) for color in colors] result_str = [str(color) for color in colors]
result = str(result_str) result = str(result_str)
print(result)
mqtt_client.publish(p1_topic, result) mqtt_client.publish(p1_topic, result)
except KeyboardInterrupt: except KeyboardInterrupt: