Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 739 Bytes

File metadata and controls

32 lines (25 loc) · 739 Bytes

Grove Temperature & Humidity Sensor

Wiki-Eintrag

Anschluss

Diesen Sensor musst du über einen Digitalen Anschluss am Grove Pi+-Board anschliessen. In unserem Beispiel haben wir D4 gewählt.

Software

import grovepi
import time
grovepi.set_bus('RPI_1')

run = True

while run:
    try:
        # Pin: D4, Color: 0
        [temp, humidity] = grovepi.dht(4, 0)
        print('Temperatur:', temp)
        print('Luftfeuchtigkeit:', humidity)
        time.sleep(5)

    except IOError as e:
        run = False
        print('IOError')
        
    except KeyboardInterrupt:
        run = False
        print('good bye')