Created
June 16, 2016 17:34
-
-
Save anonymous/4fc8ea42582c2bd7e30a6424093929d1 to your computer and use it in GitHub Desktop.
PIR HDMI code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import RPi.GPIO as GPIO | |
| import time | |
| GPIO.setwarnings(False) | |
| GPIO.setmode(GPIO.BOARD) | |
| GPIO.setup(11, GPIO.IN) | |
| GPIO.setup(3, GPIO.OUT) | |
| while True: | |
| i=GPIO.input(11) | |
| if i==0: | |
| print "Screen Off",i | |
| tvservice -o | |
| GPIO.output(3, 0) | |
| time.sleep(0.1) | |
| elif i==1: | |
| print "Screen On",i | |
| tvservice -p | |
| chvt 6 | |
| chvt 7 | |
| GPIO.output(3, 1) | |
| time.sleep(60) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment