DHT11 temperatuursensor aansluiten op een Raspberry Pi

PHOTO EMBED

Tue Apr 05 2022 19:22:41 GMT+0000 (Coordinated Universal Time)

Saved by @foobar1452 #bash #raspberrypi

# Raspberry Pi Tips & Tricks - https://raspberrytips.nl

import Adafruit_DHT

humidity, temperature = Adafruit_DHT.read_retry(Adafruit_DHT.DHT11, 4)

humidity = round(humidity, 2)
temperature = round(temperature, 2)

if humidity is not None and temperature is not None:

  print 'Temperatuur: {0:0.1f}*C'.format(temperature)
  print 'Luchtvochtigheid: {0:0.1f}%'.format(humidity)

else:

  print 'Geen data ontvangen'
content_copyCOPY

https://raspberrytips.nl/dht11-temperatuursensor-aansluiten/