0% found this document useful (0 votes)
8 views2 pages

LED Control System Arduino Project

The document outlines a project to control LEDs using an Arduino Uno and the Wokwi simulator to create various LED patterns and colors. It includes a list of required components, a working principle explaining how the Arduino controls the LEDs, and a sample code for a blinking pattern. Applications of this project include decorative lighting, visual indicators, and educational purposes in programming and electronics.

Uploaded by

thangaeswari06
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views2 pages

LED Control System Arduino Project

The document outlines a project to control LEDs using an Arduino Uno and the Wokwi simulator to create various LED patterns and colors. It includes a list of required components, a working principle explaining how the Arduino controls the LEDs, and a sample code for a blinking pattern. Applications of this project include decorative lighting, visual indicators, and educational purposes in programming and electronics.

Uploaded by

thangaeswari06
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

LED Control System using Arduino Uno

Objective:

To control LEDs using Arduino Uno and simulate different LED patterns and colors using the Wokwi

simulator.

Components Required:

- Arduino Uno

- LEDs (Red, Green, Blue, etc.)

- 220-ohm Resistors

- Breadboard

- Jumper Wires

Working Principle:

The Arduino sends HIGH or LOW signals to digital pins connected to LEDs, turning them ON or

OFF in specific patterns. Colors can be simulated using RGB LEDs or multiple single-color LEDs.

Simulation Tool:

Wokwi Simulator (https://wokwi.com/) is used to simulate the LED patterns without physical

hardware.

Arduino Code (Sample - Blinking Pattern):

int redLED = 2;

int greenLED = 3;

int blueLED = 4;

void setup() {

pinMode(redLED, OUTPUT);

pinMode(greenLED, OUTPUT);
pinMode(blueLED, OUTPUT);

void loop() {

digitalWrite(redLED, HIGH);

delay(500);

digitalWrite(redLED, LOW);

digitalWrite(greenLED, HIGH);

delay(500);

digitalWrite(greenLED, LOW);

digitalWrite(blueLED, HIGH);

delay(500);

digitalWrite(blueLED, LOW);

Expected Output:

Each LED blinks one after another every 500 milliseconds, creating a simple pattern.

Applications:

- Decorative lighting

- Visual indicators in embedded systems

- Learning basic programming and electronics

You might also like