i want to hidden the wifi AP SSID,is it possible?
It might be, I never tried that before but see hidden
arg to config()
https://docs.micropython.org/en/latest/library/network.WLAN.html#network.WLAN.config
I have created a program like this.
wlan.config(essid=SSID, key=KEY, channel=2,hidden=True)
valueerror:uknown config param
It might not be supported for this networking module.
Is there another way to do it?