#导入相关库,并从服务器获取阈值,保存在 h 中,代码略
lasth=h
s=0
while True:
#从传感器获取湿度值,保存在 newh 中,代码略
If s==0:
if newh<h and lasth<h:
s=1
#打开加湿器,代码略
else:
if newh>h and lasth>h:
#关闭加湿器,代码略
#将 newh,s 等数据传输到服务器。代码略
sleep(1000*60) #延时 1 分钟
微信扫码预览、分享更方便