-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathLED_Fun7-RGB.py
executable file
·80 lines (65 loc) · 1.93 KB
/
LED_Fun7-RGB.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/usr/bin/env python
#
# Raspberry Pi Class.
# David M. N. Bryan, [email protected]
#
# This is licend under creative commons license:
# http://creativecommons.org/licenses/by-nc-sa/3.0/
# Attribution-NonCommercial-ShareAlike 3.0 Unported (CC BY-NC-SA 3.0)
#
#import the Raspberry Pi GPIO Library
import RPi.GPIO as GPIO
import time
COLOR=0
# Define OUTPUT Pins on RPI for the LEDs
GPIORed_PIN=27
GPIOGreen_PIN=17
GPIOBlue_PIN=22
# How about some input please?
BUTTON1_PIN=24
BUTTON2_PIN=25
BUTTON3_PIN=23
# How long do we sleep between cycles
SLEEP_TIME=1
# Set the pins on the GPIO up.
# Setup the OUTPUTS (LEDS)
GPIO.setmode(GPIO.BCM)
GPIO.setup(GPIORed_PIN, GPIO.OUT)
GPIO.setup(GPIOGreen_PIN, GPIO.OUT)
GPIO.setup(GPIOBlue_PIN, GPIO.OUT)
#Setup the INPUTs (Buttons)
GPIO.setup(BUTTON1_PIN, GPIO.IN)
GPIO.setup(BUTTON2_PIN, GPIO.IN)
GPIO.setup(BUTTON3_PIN, GPIO.IN)
def blink_all_leds(SLEEP_TIME):
GPIO.output(GPIORed_PIN, True)
GPIO.output(GPIOGreen_PIN, True)
GPIO.output(GPIOBlue_PIN, True)
time.sleep(SLEEP_TIME)
GPIO.output(GPIORed_PIN, False)
GPIO.output(GPIOGreen_PIN, False)
GPIO.output(GPIOBlue_PIN, False)
time.sleep(SLEEP_TIME)
def blink_led(COLOR, SLEEP_TIME):
if (COLOR == 'RED'):
GPIO.output(GPIORed_PIN, True)
time.sleep(SLEEP_TIME)
GPIO.output(GPIORed_PIN, False)
time.sleep(SLEEP_TIME)
if (COLOR == 'GREEN'):
GPIO.output(GPIOGreen_PIN, True)
time.sleep(SLEEP_TIME)
GPIO.output(GPIOGreen_PIN, False)
time.sleep(SLEEP_TIME)
if (COLOR == 'BLUE'):
GPIO.output(GPIOBlue_PIN, True)
time.sleep(SLEEP_TIME)
GPIO.output(GPIOBlue_PIN, False)
time.sleep(SLEEP_TIME)
while True:
if ( GPIO.input(BUTTON1_PIN) == True ):
blink_led('RED',0.5 )
if ( GPIO.input(BUTTON2_PIN) == True ):
blink_led('GREEN',0.5)
if ( GPIO.input(BUTTON3_PIN) == True ):
blink_led('BLUE',0.5)