From 5e41f774decf4fb035311328ca91e0010bc0a485 Mon Sep 17 00:00:00 2001 From: Jonathan Wonneberger Date: Wed, 17 Jul 2024 22:52:23 +0200 Subject: [PATCH] remove debug prints --- boot.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/boot.py b/boot.py index c6861eb..88486ab 100755 --- a/boot.py +++ b/boot.py @@ -15,9 +15,6 @@ def connect_to_wifi(ssid, password, timeout = 15): wlan.connect(ssid, password) start_time = time.time() while not wlan.isconnected(): - print("start: ", start_time) - print("time:", time.time()) - print("condition: ", start_time - time.time() > timeout) if time.time() - start_time > timeout: print(f"failed to connect to {ssid} within {timeout} seconds") return False