Search found 2 matches
- Sat May 16, 2020 2:35 am
- Forum: ESP8266 boards
- Topic: ESP8266 does not stop to broadcast SSID
- Replies: 2
- Views: 596
Re: ESP8266 does not stop to broadcast SSID
Hey Kevin, thanks very much for your answer. I have modified my code and it looks like this: import network from network import WLAN #WiFi information ssid = 'My Wifi SSID' password = 'Wifi Password' #Connect ESP8266 to the WiFi wlan = network.WLAN(network.STA_IF) wlan.active(True) ap=network.WLAN(n...
- Thu May 14, 2020 3:00 am
- Forum: ESP8266 boards
- Topic: ESP8266 does not stop to broadcast SSID
- Replies: 2
- Views: 596
ESP8266 does not stop to broadcast SSID
Hello everyone, I have a concerned about my ESP8266 board, the code that I'm using is allowing to connect to my home wifi, but when I ran the wifi analyzer I noticed that this board was broadcasting and SSID called Microphyton-774081. the code that I'm using to connect to the wifi is as follow: impo...