commit ad49985a128ae5ef79185b3e5c0ed4887c0ea613 Author: John Shaver Date: Wed Apr 4 01:39:59 2018 -0700 initial commit diff --git a/main.py b/main.py new file mode 100644 index 0000000..d81db8d --- /dev/null +++ b/main.py @@ -0,0 +1,21 @@ +#! /usr/bin/env python +# -*- coding: utf-8 -*- +import RPi.GPIO as GPIO +import time + +GPIO.setmode(GPIO.BCM) + +GPIO.setup(23, GPIO.IN, pull_up_down=GPIO.PUD_UP) +GPIO.setup(24, GPIO.OUT) + +try: + while True: + button_state = GPIO.input(23) + if button_state == False: + GPIO.output(24, True) + print('Button Pressed...') + time.sleep(0.2) + else: + GPIO.output(24, False) +except: + GPIO.cleanup()