Це відео не доступне.
Перепрошуємо.

Blinking LED using Arduino Uno || Simplest project for absolute beginners

Поділитися
Вставка
  • Опубліковано 14 сер 2024
  • Hello friends,
    In today's video I am going to show you how to make a blinking LED Bulb using Arduino Uno. This is the simplest project that can be done using Arduino Uno and can be done by absolute beginners as their first project in Arduino.
    In this video, I am showing step by step how to blink the onboard or built-in LED and also an external LED bulb using Arduino Uno.
    Link for purchasing components used:
    1. Arduino Uno board : amzn.to/3RPzXw8
    Link to download LED Blink Code:
    drive.google.c...
    🎵 Song: 'Markvard - Dreams' is under a creative commons license license.
    www.youtube.co...
    🎶 Music promoted by BreakingCopyright:
    • 🛀 Soothing & Chill Out...
    Please share, like the video and SUBSCRIBE to my channel for watching more interesting videos in future. Thank You...❤
    #arduinoproject

КОМЕНТАРІ • 4

  • @RaphRonron11
    @RaphRonron11 Місяць тому +1

    what is the code/ where is the code?

    • @Science_4U_
      @Science_4U_  Місяць тому +1

      Hi friend, This LED blink code is already given in the examples section of Arduino IDE software along with a set of basic standard codes. In the video, I am showing how to open that code from examples section and upload to Arduino. However, since you have asked for the code, I will paste the code here also. I will also give a separate link in the description box for downloading the code. Thank you. Code is given below.
      void setup() {
      // initialize digital pin LED_BUILTIN as an output.
      pinMode(LED_BUILTIN, OUTPUT);
      }
      // the loop function runs over and over again forever
      void loop() {
      digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
      delay(1000); // wait for a second
      digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
      delay(1000); // wait for a second
      }

    • @RaphRonron11
      @RaphRonron11 Місяць тому +1

      @@Science_4U_ Thanks. i subscribe now;)

    • @Science_4U_
      @Science_4U_  Місяць тому +1

      @@RaphRonron11 Thank you friend..🙂🥰