Files
piplayer/code/test/lightoff.py
T
2016-12-18 01:59:54 +01:00

9 lines
114 B
Python

import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
GPIO.setup(27,GPIO.OUT)
GPIO.output(27,GPIO.LOW)
GPIO.cleanup()