(Demo) Raspberry Pi Pico W Wi-Fi Manager Web Server using MicroPython

Поділитися
Вставка
  • Опубліковано 29 жов 2024

КОМЕНТАРІ • 7

  • @Microcontrollerslab
    @Microcontrollerslab  Рік тому

    For code and details, visit this link:
    microcontrollerslab.com/raspberry-pi-pico-w-wi-fi-manager-web-server/

  • @isaackeller90
    @isaackeller90 Рік тому

    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.

    • @dannywest6045
      @dannywest6045 Рік тому

      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

    • @maxerickson4859
      @maxerickson4859 Рік тому

      @@dannywest6045 where do I put this code?