How to Set Up Arduino Uno & Blink an LED - Step-by-Step Tutorial || Live proof || worth it.

Поділитися
Вставка
  • Опубліковано 27 січ 2025

КОМЕНТАРІ • 5

  • @tayyababegum8050
    @tayyababegum8050 5 днів тому

    So clear tutorial ,thanks for explaining clearly,❤🎉

  • @AbdulMuqsith-xr3dh
    @AbdulMuqsith-xr3dh  14 днів тому +1

    1:51 Also you need 2 100ohm resistors

  • @saba-te2M
    @saba-te2M 14 днів тому +1

    Thank you sir ❤

  • @AbdulMuqsith-xr3dh
    @AbdulMuqsith-xr3dh  14 днів тому +1

    Code explanation:🎉
    Void setup(){
    //Here you should write the line of condes that executes once and also here you should declare inputs and outputs here
    pinMode(8,OUTPUT); //8th pin of arduino is output now
    }
    Void loop(){
    //Here the code executes infinite times whenever the power is fed to arduino
    digitalwrite(8,HIGH); //led connected to 8th terminal is HIGH
    delay(1000); //led high upto 1 second
    digitalwrite(8,LOW); //led connected to 8th terminal is LOW
    delay(1000); //led LOW upto 1 second
    }