From 19e646263fff2c3c3e41caad73f0f0804b191cee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Sat, 17 Feb 2024 15:03:42 +0100 Subject: [PATCH] removed max packets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- client/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/main.py b/client/main.py index cae46c4..d73a764 100644 --- a/client/main.py +++ b/client/main.py @@ -99,4 +99,4 @@ if __name__ == "__main__": mqttc.on_message = on_message mqttc.subscribe("tube-"+str(wlan_mac_address)+"/pixel_colors", 0) - mqttc.loop_forever(max_packets = 1) \ No newline at end of file + mqttc.loop_forever() \ No newline at end of file