本站改版新增arduino频道

Micropython
Arduino

micropython 判断wifi连接状态


def connect():#连接程序

import network#导入网络模块

#并将网络凭据(ssid和密码)存储在两个变量上。

ssid = "yourNetworkName"

password =  "yourNetworkPassword"

#获取站点WiFi接口的实例并将其存储在变量上

station = network.WLAN(network.STA_IF)


#如已连接,则打印警告,完成执行

if station.isconnected() == True:

print("Already connected")

return

#如未连接,则使用存储在前文所述的变量中的凭证来激活网络接口并执行实际连接。

station.active(True)

station.connect(ssid, password)


while station.isconnected() == False:

pass

#打印成功消息和WiFi配置

print("Connection successful")

print(station.ifconfig())



推荐分享
图文皆来源于网络,内容仅做公益性分享,版权归原作者所有,如有侵权请告知删除!
 

Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号

执行时间: 0.011080026626587 seconds