summaryrefslogtreecommitdiff
path: root/water_the_plant
blob: bdfed4d12569ca0ae022145832bed02c74a0e099 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/python3
import RPi.GPIO as GPIO
import time

# GPIO-Modus auf BCM setzen
GPIO.setmode(GPIO.BCM)

# GPIO4 als Ausgang konfigurieren
GPIO.setup(4, GPIO.OUT)

try:
    # GPIO4 einschalten
    GPIO.output(4, GPIO.LOW)
    # 1 Sekunde warten
    time.sleep(4)
    # GPIO4 ausschalten
    GPIO.output(4, GPIO.HIGH)
finally:
    # Ressourcen freigeben
    GPIO.cleanup()