Change WiFi configuration
-
I'm planning to change the WiFi name and password of my GPy board.
Any help in coding?
-
See documentation, there is an accesspoint example:
https://docs.pycom.io/firmwareapi/pycom/network/wlan.htmlfrom network import WLAN wlan = WLAN() wlan.init(mode=WLAN.AP, ssid='wipy-wlan', auth=(WLAN.WPA2,'www.wipy.io'), channel=7, antenna=WLAN.INT_ANT)
Johan