erinaco/test/pir.py
2017-04-14 13:32:01 +00:00

21 lines
436 B
Python

import RPi.GPIO as GPIO
import time
SENSOR_PIN = 22
GPIO.setmode(GPIO.BCM)
GPIO.setup(SENSOR_PIN, GPIO.IN)
def mein_callback(channel):
# Hier kann alternativ eine Anwendung/Befehl etc. gestartet werden.
print('Es gab eine Bewegung!')
try:
GPIO.add_event_detect(SENSOR_PIN , GPIO.RISING,
callback=mein_callback)
while True:
time.sleep(100)
except KeyboardInterrupt:
print("Beende...")
GPIO.cleanup()