ESP8266 does not stop to broadcast SSID
Posted: Thu May 14, 2020 3:00 am
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:
import machine
import network
import bme280_Rev2
from machine import Pin, I2C
ssid = 'My-Home_SSID'
password = 'My-Wifi-Password'
station = network.WLAN(network.STA)
station.active(True)
station.connect(ssid, password)
Is there a way to stop broadcasting that SSID?
Thanks in advance.
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:
import machine
import network
import bme280_Rev2
from machine import Pin, I2C
ssid = 'My-Home_SSID'
password = 'My-Wifi-Password'
station = network.WLAN(network.STA)
station.active(True)
station.connect(ssid, password)
Is there a way to stop broadcasting that SSID?
Thanks in advance.