filmov
tv
Tutorial - How to make Leds blinking - Arduino | HowTo

Показать описание
#Arduino #Tutorial #Led
***Enable subtitles for full explanation in your language***
In this video we will show you the steps that are needed to make some leds blinking using Arduino UNO.
►Subscribe to my partner's channel for more videos like this:
►Special thanks to the people who helped us with the subtitles.
►Soundtrack:
Song: Elektronomia - Sky High [NCS Release]
Music provided by NoCopyrightSounds.
►Arduino Code that we used:
int greenled = 2;
int orangeled = 4;
void setup() {
pinMode(greenled, OUTPUT);
pinMode(orangeled, OUTPUT);
}
void loop() {
digitalWrite(greenled, HIGH);
delay(80);
digitalWrite(greenled, LOW);
delay(80) ;
digitalWrite(orangeled, HIGH);
delay(80);
digitalWrite(orangeled, LOW);
delay(80);
}
***Enable subtitles for full explanation in your language***
In this video we will show you the steps that are needed to make some leds blinking using Arduino UNO.
►Subscribe to my partner's channel for more videos like this:
►Special thanks to the people who helped us with the subtitles.
►Soundtrack:
Song: Elektronomia - Sky High [NCS Release]
Music provided by NoCopyrightSounds.
►Arduino Code that we used:
int greenled = 2;
int orangeled = 4;
void setup() {
pinMode(greenled, OUTPUT);
pinMode(orangeled, OUTPUT);
}
void loop() {
digitalWrite(greenled, HIGH);
delay(80);
digitalWrite(greenled, LOW);
delay(80) ;
digitalWrite(orangeled, HIGH);
delay(80);
digitalWrite(orangeled, LOW);
delay(80);
}