Arduino Tri-colour LED Flasher Circuit

This simple tri-colour LED flasher circuit is great for beginners. The three pin tri-colour LED is controller by an Arduino Uno and changed between three colours. This video shows the Arduino running a sketch that controls the tri-colour LED.Arduino Tri-colour LED Flasher Circuit

Circuit Diagram for the Arduino Tri-colour LED Controller

The circuit is very simple, using only three components. The tri-colour LED is a three pin common cathode type containing a red and green LED. The tri-colour LED is the same LED used in the tri-colour LED transistor flasher circuit – refer to this project for more details on the LED.

Arduino Sketch

The sketch changes the colour of the LED every second. Colours are changed by switching on the red LED in the tri-colour LED package, then the green LED, orange is obtained by switching on both the red and green LEDs at the same time.Arduino Tri-colour LED Flasher Circuit Schematic/*————————————————————– Program: tri_colour_LED Description: Changes the colours of a tri-color LED. Hardware: Arduino Uno and tri-colour LED. Software: Developed using Arduino 1.0.3 software Should be compatible with Arduino 1.0 + Date: 8 May 2013 Author: W.A. Smith, http://startingelectronics.org ————————————————————–*/ void setup() { pinMode(2, OUTPUT); pinMode(3, OUTPUT); }

 

For more detail: Arduino Tri-colour LED Flasher Circuit


About The Author

Ibrar Ayyub

I am an experienced technical writer holding a Master's degree in computer science from BZU Multan, Pakistan University. With a background spanning various industries, particularly in home automation and engineering, I have honed my skills in crafting clear and concise content. Proficient in leveraging infographics and diagrams, I strive to simplify complex concepts for readers. My strength lies in thorough research and presenting information in a structured and logical format.

Follow Us:
LinkedinTwitter

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top