本站改版新增arduino频道
#import run
import network
import _thread
import time
class wlan_ever(object):
def __init__(self,name,password): #传入宽带账号,密码
self.wlan_is_connect=0
self.name = name
self.password =password
def threadRun1(self,a,b): #线程联网,传入账号密码
print('网络线程启动')
wl=network.WLAN(network.STA_IF)
wl.active(True)
while 1:
self.wlan_is_connect=wl.isconnected()
if self.wlan_is_connect :
time.sleep(60)#这个睡眠很重要,60秒检测一次,其他时间保持CPU空闲
else:
print('掉线了,准备中~20秒后抢救')
time.sleep(20)
wl.connect(a,b)#重连
def theadRun(self):
_thread.start_new_thread(self.threadRun1,(self.name,self.password))#启动线程
import urequests as requests
wlan=wlan_ever('NBWIFI','z7758521') #实例化传入账号密码
wlan.theadRun()# 启动线程
print(wlan.wlan_is_connect)#打印一下连接状态
while 1 :
if wlan.wlan_is_connect:
try:
cc=requests.get("http://api.wpbom.com/api/daygas.php?msg=%E4%B8%B4%E6%B1%BE&b=1").text
print(cc)
except:
print('获取失败')
Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号
执行时间: 0.0097489356994629 seconds