13/9/2018
Introduction
An RGB LED has 4 pins, one for each color (Red, Green, Blue) and a common cathode. It has three different color-emitting diodes that can be combined to create all sorts of color! Any color is possible depending on how bright each diode is.
In this tutorial you will learn how to use an RGB LED with Raspberry Pi and create unique color combinations. Let's get started! |
What you will need - Hardware
For this tutorial you will need:
|
The Circuit
Python code
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 | #libraries import RPi.GPIO as GPIO from time import sleep #disable warnings (optional) GPIO.setwarnings(False) #Select GPIO Mode GPIO.setmode(GPIO.BCM) #set red,green and blue pins redPin = 12 greenPin = 19 bluePin = 13 #set pins as outputs GPIO.setup(redPin,GPIO.OUT) GPIO.setup(greenPin,GPIO.OUT) GPIO.setup(bluePin,GPIO.OUT) def turnOff(): GPIO.output(redPin,GPIO.HIGH) GPIO.output(greenPin,GPIO.HIGH) GPIO.output(bluePin,GPIO.HIGH) def white(): GPIO.output(redPin,GPIO.LOW) GPIO.output(greenPin,GPIO.LOW) GPIO.output(bluePin,GPIO.LOW) def red(): GPIO.output(redPin,GPIO.LOW) GPIO.output(greenPin,GPIO.HIGH) GPIO.output(bluePin,GPIO.HIGH) def green(): GPIO.output(redPin,GPIO.HIGH) GPIO.output(greenPin,GPIO.LOW) GPIO.output(bluePin,GPIO.HIGH) def blue(): GPIO.output(redPin,GPIO.HIGH) GPIO.output(greenPin,GPIO.HIGH) GPIO.output(bluePin,GPIO.LOW) def yellow(): GPIO.output(redPin,GPIO.LOW) GPIO.output(greenPin,GPIO.LOW) GPIO.output(bluePin,GPIO.HIGH) def purple(): GPIO.output(redPin,GPIO.LOW) GPIO.output(greenPin,GPIO.HIGH) GPIO.output(bluePin,GPIO.LOW) def lightBlue(): GPIO.output(redPin,GPIO.HIGH) GPIO.output(greenPin,GPIO.LOW) GPIO.output(bluePin,GPIO.LOW) while True: turnOff() sleep(1) #1second white() sleep(1) red() sleep(1) green() sleep(1) blue() sleep(1) yellow() sleep(1) purple() sleep(1) lightBlue() sleep(1) |
Download the code from here and open it with Thonny Python IDE or run it from terminal.
|
|
Well Done
You have successfully completed one more Raspberry Pi "How to" tutorial and you learned how to use RGB LED.
I hope you liked this, let me know in the comments.
I hope you liked this, let me know in the comments.