Your cart is currently empty!
树莓派DHT11温度检测并SFTP上传显示到网页上~~
在这篇文章上的升级: 搭建带历史图表的树莓派温度网页(!)
咳咳,不想总是依靠别人(yeelink)的网站!我想要自己的记录树莓派温度的网页!所以折腾了一下~

首先dht11的 – out +分别接上树莓派3b的 9,7,1
然后输入以前的那篇文章的代码(python3)
#!/usr/bin/python
import RPi.GPIO as GPIO
import time
#BCM编号方式的17对应树莓派的pin11
channel = 4
data = []
j = 0
#I/O口使用BCM编号方式
GPIO.setmode(GPIO.BCM)
time.sleep(1)
#设置数据线为输出
GPIO.setup(channel, GPIO.OUT)
GPIO.output(channel, GPIO.LOW)
time.sleep(0.02)
GPIO.output(channel, GPIO.HIGH)
#设置数据线为输入
GPIO.setup(channel, GPIO.IN)
while GPIO.input(channel) == GPIO.LOW:
continue
while GPIO.input(channel) == GPIO.HIGH:
continue
while j < 40:
k = 0
while GPIO.input(channel) == GPIO.LOW:
continue
while GPIO.input(channel) == GPIO.HIGH:
k += 1
if k > 100:
break
if k < 8:
data.append(0)
else:
data.append(1)
j += 1
print ("Sensor is working.")
print (data)
#读取数值
humidity_bit = data[0:8]
humidity_point_bit = data[8:16]
temperature_bit = data[16:24]
temperature_point_bit = data[24:32]
check_bit = data[32:40]
humidity = 0
humidity_point = 0
temperature = 0
temperature_point = 0
check = 0
#转换数值
for i in range(8):
humidity += humidity_bit[i] * 2 ** (7 - i)
humidity_point += humidity_point_bit[i] * 2 ** (7 - i)
temperature += temperature_bit[i] * 2 ** (7 - i)
temperature_point += temperature_point_bit[i] * 2 ** (7 - i)
check += check_bit[i] * 2 ** (7 - i)
tmp = humidity + humidity_point + temperature + temperature_point
#数据校验
if check == tmp:
print ("温度 : ", temperature, ",干燥的湿度~ : " , humidity," -- | Lanhao Tech |")
if temperature in [20,21,22,23,24,25] and humidity in [19,20,21,22,23,24,25]:
print("\033[1;31;40m")
print("Your Feeling Must be VERY Comfortable")
elif temperature < 20 and temperature >= 10:
print("Temperature is Low")
elif temperature < 10:
print("It's Cooold!")
elif temperature > 29:
print("Feeling a Little Hot")
else:
print("I Don't Want to Say Anything.")
else:
print ("Sorry! There is Something Wrong!!! - LanHao Tech.")
print( "Temperature : ", temperature, ", Humidity : " , humidity, " check : ", check, " tmp : ", tmp)
GPIO.cleanup()
#数据转换成JSON格式
mytemp = '{"value":%f}' %temperature
myhumi = '{"value":%f}' %humidity
#打开文件
tmp_output = open('/home/pi/DHT11/tmpdata.txt', 'w')
hud_output = open('/home/pi/DHT11/huddata.txt', 'w')
#写数据到文本文件中
tmp_output.write(mytemp)
hud_output.write(myhumi)
#关闭文件
tmp_output.close
hud_output.close
标绿的表示和以前的代码不一样了!删除掉了关于hud_output的代码,然后湿度和温度合并在一个txt中。我们接下来要在本地同一目录再写个上传的代码。
uploadd.py #!/usr/bin/env python #encoding:utf8 import paramiko hostname = '服务器IP' port = 端口 username = '账号' password = '密码' localpath = "/path/to/tmpdata.txt" #需要上传的文件(源) remotepath = "/path/to/yourwebsite/tmpdata.txt" #远程路径(目标) try: # 1.创建一个已经连通的SFTP客户端通道 t = paramiko.Transport((hostname, port)) t.connect(username=username, password=password) sftp = paramiko.SFTPClient.from_transport(t) # 2.上传本地文件到远程SFTP服务端 sftp.put(localpath,remotepath) #上传文件 # 3.关闭连接 t.close() except Exception, e: print str(e)
标红出要自己修改,另外我们这里是使用的SFTP,注意导入了paramiko,在pip install 之前,根据官方安装文档需要先apt-get install libffi-dev。
然后我们需要让它每30分钟上传。
写一个upload.sh文件依次python3 /path/to/tianqi.py python /path/to/uploadd.py然后chmod +x。
然后crontab -e
*/30 * * * * /path/to/yourfile/upload.sh
接下来我们需要在服务器上写php代码。
<?php $myfile = fopen("tmpdata.txt", "r") or die("温度消失了!"); echo fread($myfile,filesize("tmpdata.txt")); fclose($myfile); ?>
就这样就可以了!这个php你也可以自己美化。
Example:https://lanhaoo.club/wendu.php
评论
《“树莓派DHT11温度检测并SFTP上传显示到网页上~~”》 有 1 条评论
-
[…] 之前, 准确的说是2年前哈哈, 写过一篇 直接将温度上传到网页的文章 […]
发表回复