From 68f6832f10a50dc9455179cfe54f62ce13f9e5fb Mon Sep 17 00:00:00 2001 From: Tayfun ULU Date: Fri, 8 Aug 2025 19:57:45 +0300 Subject: [PATCH] Update wifimgr.py A change was made to the Raspberry Pico and it was tested. --- wifimgr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wifimgr.py b/wifimgr.py index 650e88d..8725813 100644 --- a/wifimgr.py +++ b/wifimgr.py @@ -266,7 +266,7 @@ def start(port=80): wlan_sta.active(True) wlan_ap.active(True) - wlan_ap.config(essid=ap_ssid, password=ap_password, authmode=ap_authmode) + wlan_ap.config(essid=ap_ssid, password=ap_password) server_socket = socket.socket() server_socket.bind(addr)