为什么我的覆盆子pi的温度值在700范围内?

时间:2017-09-13 13:30:07

标签: python raspberry-pi raspberry-pi2 grovepi+

我的代码是temperature humidity sensor,我附加到连接到树莓派传感器的grovepi传感器。如果可能的话,你可以告诉我如何将它转换为摄氏度。谢谢

import grovepi

sensor = 4

while True:
  try:
     [temp,humidity] = grovepi.dht(sensor,1)
     print "temp=", temp, "humidity =", humidity
  except IOError:
     print "Error"

enter image description here

1 个答案:

答案 0 :(得分:0)

它是一个蓝色传感器,因此它应该是[temp,humidity] = grovepi.dht(sensor,0)

您可以在源代码herehere

中找到它