【得捷电子Follow me第1期】第六贴:通过wifi连接网络
[复制链接]
通过WIFI连接到网络可以参考https://edm.eeworld.com.cn/digikey_followme_01_Connecting-to-the-internet-with-pico-w.pdf
上面已经写得很明白不用多说,我说得是这次没有按装任保库十分顺利就上了网了。程序代码如下:
import network
import time
wlan = network.WLAN(network.STA_IF)
wlan.active(True)
wlan.connect('TPLINK555', '12345678')
while not wlan.isconnected() and wlan.status() >= 0:
print("Waiting to connect:")
time.sleep(1)
print(wlan.ifconfig())
运行截图如下:
|