How to make a blinking led flasher

Описание к видео How to make a blinking led flasher

How to make a blinking led flasher using Arduino Uno | How to make| simple flashing blinking led || How to make a blinking flasher . How to make . How to make a blinking/flashing led using ic555 . How to make a blinking led / flash using relay . How to make a bling led light . how to make a blinking led using Arduino . how to make a blinking led circuit.

CODE FOR BLINKING LED:-

/* BLINKING LED
by StupidCreativity
*/
void setup() {
pinMode(13,OUTPUT);//Declaring pin 13 as outpit
}

void loop() {
digitalWrite(13,HIGH);
delay(250); //delaying for 250milliseconds
digitalWrite(13,LOW);
delay(250);
}


Watch my other cool videos:-

How to make a simple LED chaser(Two way flashing led):-
   • LED chaser circuit using Arduino on B...  

How to make a touch sensor switch circuit using BC 547 transistor-    • How to make a touch sensor switch usi...  

how to make a simple smart door alarm using IC 555 and IR (Infrared rays) proximity sensor-    • How to make a simple smart door alarm...  

Комментарии

Информация по комментариям в разработке