From 25e48407c28f232b571f415837a0e82348339936 Mon Sep 17 00:00:00 2001 From: sickprodigy Date: Wed, 5 Nov 2025 16:51:39 -0500 Subject: [PATCH] Remove connection details printout from connect_wifi function --- Scripts/networking.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Scripts/networking.py b/Scripts/networking.py index 2f37df7..e4a5fba 100644 --- a/Scripts/networking.py +++ b/Scripts/networking.py @@ -98,9 +98,5 @@ def connect_wifi(led=None, max_retries=3, timeout=20): time.sleep(0.2) print('Connected to WiFi successfully!') - - # Print connection details - ifconfig = wlan.ifconfig() - print(f"IP: {ifconfig[0]} | Gateway: {ifconfig[2]}") - + return wlan \ No newline at end of file