Moving LED project with Arduino.

By IKTech May 31, 2017

We can see the LED de Banner in the front of the office, sometimes we are going to get married to an LED / Lite or big company. Moving from one side to the other. But how is it possible? Yes, but let’s help you today to work on your made projects at any of your events. This is Arduino’s Basic Project. Those who have started new jobs can perform such projects.
Required components:

Arduino Uno Board
8 LEDs
820 yahoo registers
Some mail-to-filmy him
Bread boards
Arduino ID software

Power supply

You can use direct USB cable to get the full project. 5 volt outputs are available with this USB cable. You can use Extra Power if you want. In that case, keep in mind that Arduino’s power input is not more than 36 volts in any way. Because the standard Power Input is 736 volts. Arduino can work correctly and successfully if this is the range of power. Well, it is 5 volts.
Circuit diagram

Connection will be given in the same manner as the circuit is given. Because these pins are defined in our programming. It should be noted that one does not get along with the other. There is a possibility of damage to the Arduino.
Operation:

First go to the Arduino IDE application and open the new project. Then enter the code below or enter it in your new project. Then press the Verify button. This will show the Verify Completely dialog.

Then upload the code to the board by clicking on the upload button. Now unplug the board and give the power supply through the diagram according to the diagram. Once reset, press Reset Button to reset the whole board.

[Note: Check at the time of uploading the program.
Code:
int LED1=2;

int LED2=3;

int LED3=4;

int LED4=5;

int LED5=6;

int LED6=7;

int LED7=8;

int LED8=9;

void setup()

{

pinMode(2,OUTPUT);

pinMode(3,OUTPUT);

pinMode(4,OUTPUT);

pinMode(5,OUTPUT);

pinMode(6,OUTPUT);

pinMode(7,OUTPUT);

pinMode(8,OUTPUT);

pinMode(9,OUTPUT);

}

void loop()

{

digitalWrite(2,HIGH);

delay(500);

digitalWrite(2,LOW);

delay(500);

digitalWrite(3,HIGH);

delay(500);

digitalWrite(3,LOW);

delay(500);

digitalWrite(4,HIGH);

delay(500);

digitalWrite(4,LOW);

delay(500);

digitalWrite(5,HIGH);

delay(500);

digitalWrite(5,LOW);

delay(500);

digitalWrite(6,HIGH);

delay(500);

digitalWrite(6,LOW);

delay(500);

digitalWrite(7,HIGH);

delay(500);

digitalWrite(7,LOW);

delay(500);

digitalWrite(8,HIGH);

delay(500);

digitalWrite(8,LOW);

delay(500);

digitalWrite(9,HIGH);

delay(500);

digitalWrite(9,LOW);

delay(500);

The moving LED project is moving. Hope everyone can easily understand.

Why is it late? The project is ready today.

If there is any problem or can not understand the project, please contact us. Encourage others to read and share with others. Comment on when there are any suggestions.

Leave a Reply

Your email address will not be published.