Industrial manufacturing
Industrial Internet of Things | Industrial materials | Equipment Maintenance and Repair | Industrial programming |
home  MfgRobots >> Industrial manufacturing >  >> Manufacturing Technology >> Manufacturing process

Create Your Own LED Color Sequencer with Arduino – Easy DIY Tutorial

Components and supplies

Create Your Own LED Color Sequencer with Arduino – Easy DIY Tutorial
Arduino UNO
×1
Create Your Own LED Color Sequencer with Arduino – Easy DIY Tutorial
Breadboard (generic)
×1
LEDs
×4
Create Your Own LED Color Sequencer with Arduino – Easy DIY Tutorial
Jumper wires (generic)
×10
Create Your Own LED Color Sequencer with Arduino – Easy DIY Tutorial
Resistor 221 ohm
or 220 ohm would be fine
×4
Create Your Own LED Color Sequencer with Arduino – Easy DIY Tutorial
9V battery (generic)
×1

Apps and online services

Create Your Own LED Color Sequencer with Arduino – Easy DIY Tutorial
Arduino IDE
Create Your Own LED Color Sequencer with Arduino – Easy DIY Tutorial
Arduino Web Editor

About this project

The light sequencer is a very basic and fun lighting system that anyone can make and code. Also the code can be changed so you can design your own unique pattern of lights.

Instructions

Step 1

First take your Arduino and breadboard, take a small jumper wire and plug it on ground on the Arduino and the first hole on the bread board. When finished take an LED and plug its long leg right underneath the wire. Then take a 220 ohm resistor and plug it under the short leg of the LED. Take another short jumper wire and and plug it under the resistor and connect that to pin number 13.

Create Your Own LED Color Sequencer with Arduino – Easy DIY Tutorial

Step 2

Take another jumper wire and plug it in between the resistor and the yellow wire. Take that wire and put it in a new row. Do the same things as step one except this time have the short leg of the wire under the one in the new row and in the end put the end wire in pin hole 12.

Create Your Own LED Color Sequencer with Arduino – Easy DIY Tutorial

Step 3

Take another wire and put it on under the very first wire (under the long leg of the LED) and plug it on a new row on the other side of the second LED and repeat step one and connect the end wire to pin 11.

Create Your Own LED Color Sequencer with Arduino – Easy DIY Tutorial

Step 4

Take another jumper wire and plug it under the second LED. repeat step one again and plug the last wire to port 10 on the Arduino. Download the program and the finished product should look like below:

Create Your Own LED Color Sequencer with Arduino – Easy DIY Tutorial

Thanks for checking out my project please leave a like!

Code

  • light sequencer
light sequencerArduino
void setup() {
  

pinMode(9, OUTPUT);
pinMode(10, OUTPUT);
pinMode(11, OUTPUT);
pinMode(12, OUTPUT);
pinMode(13, OUTPUT);
}

void loop() {
digitalWrite(13, HIGH);  
  digitalWrite(12, LOW);
  digitalWrite(11, LOW);
  digitalWrite(10, LOW);
  digitalWrite(9, LOW);

  delay(300);                       
  digitalWrite(13, LOW); 
  digitalWrite(12, HIGH); 
  digitalWrite(11, LOW);
  digitalWrite(10, LOW);
  digitalWrite(9, LOW);

  delay(300);                       
  digitalWrite(13, LOW); 
  digitalWrite(12, LOW); 
  digitalWrite(11, HIGH);
  digitalWrite(10, LOW);
  digitalWrite(9, LOW);
  
  delay(300);                       
  digitalWrite(13, LOW); 
  digitalWrite(12, LOW); 
  digitalWrite(11, LOW);
  digitalWrite(10, HIGH); 
  digitalWrite(9, LOW); 


  delay(300);                       
  digitalWrite(13, LOW); 
  digitalWrite(12, LOW); 
  digitalWrite(11, LOW);
  digitalWrite(10, LOW); 
  digitalWrite(9, HIGH);

 


}

Schematics

this is the layout of this circuit that I madeCreate Your Own LED Color Sequencer with Arduino – Easy DIY Tutorial

Manufacturing process

  1. Build Your Own LUMAZOID: A DIY Arduino Music Visualizer
  2. Build an Arduino Iron Man: Components, Sensors, and Step‑by‑Step Guide
  3. Find Me: Smart Item Locator with Arduino and Bluetooth
  4. DIY Arduino Humidifier Controller with Relay – Safe High‑Voltage Setup
  5. Build a Smart Arduino Quadruped Robot: Step‑by‑Step Guide
  6. Arduino RGB LED Color Mixer – Beginner‑Friendly DIY Project
  7. Build a Custom Arduino Joystick Steering Wheel for Gaming
  8. Build an Arduino RGB Color Mixer – Step‑by‑Step Tutorial
  9. PhoneLocator: Securely Locate Your Phone Anywhere
  10. Build a Reliable Arduino-Based Lie Detector