Search found 1 match
- Mon Mar 25, 2019 10:17 pm
- Forum: ESP8266 boards
- Topic: Newbie with WIFI problem
- Replies: 2
- Views: 2793
Newbie with WIFI problem
Hi, im newbie and i am using an ESP8266 nodeMCU board. I am trying to connect to my wifi with the code: import network ssid="casa_1001" password="xxxxxxxxxxx" network.WLAN(network.AP_IF).active(False) sta_if = network.WLAN(network.STA_IF) sta_if.active(True) sta_if.connect(ssid, password) But i am g...