From 3b38264b7032ce9927d108e1a91adcb2e9827ee6 Mon Sep 17 00:00:00 2001 From: pi Date: Sun, 3 May 2026 21:27:29 +1200 Subject: [PATCH] chore(wifi): log connecting while waiting for STA Co-authored-by: Cursor --- src/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.py b/src/main.py index ff4aa14..8870de9 100644 --- a/src/main.py +++ b/src/main.py @@ -54,6 +54,7 @@ sta_if.active(True) sta_if.config(pm=network.WLAN.PM_NONE) sta_if.connect(settings["ssid"], settings["password"]) while not sta_if.isconnected(): + print("Connecting") utime.sleep(1) wdt.feed()