The error OSError: [Errno 98] EADDRINUSE means that the address and port that the server is trying to bind to are already in use by another process. This could be because another program or service is already using the same port, or because the server was not closed properly in a previous run and the port is still in use.
For code and details, visit this link:
microcontrollerslab.com/raspberry-pi-pico-w-wi-fi-manager-web-server/
The error OSError: [Errno 98] EADDRINUSE means that the address and port that the server is trying to bind to are already in use by another process. This could be because another program or service is already using the same port, or because the server was not closed properly in a previous run and the port is still in use.
this appears to solve the OSerror:[Errno 98]
wlan_sta.disconnect()
wlan_ap.disconnect()
wlan_sta.active(False)
wlan_ap.active(False)
wlan_sta.deinit()
wlan_ap.deinit()
wlan_sta=None
wlan_ap=None
time.sleep(1) issue
@@dannywest6045 where do I put this code?