Posts

Showing posts from October, 2021

Project 2 - Blinking LEDs arranged to form the number 1

Image
Hello friends! Welcome to another post! In this post we will make our next project which is - Blinking LEDs arranged to form the number 1. Before we begin I hope you have installed Arduino IDE. If not you can read this -   How to Download Arduino IDE . Here are the terms we will use in our programming int led = number; void setup(); void loop(); pinMode(variable, text); digitalWrite(variable, text); delay(number); I hope you all know about these terms. If  not you can read this -  The terms used in Arduino IDE .  Let's begin! The components you need -  Arduino UNO Board (x1) {If you don't have Arduino UNO board then you can use any other board} Wires (The number of wires depends on the number of LEDs you use) Breadboard(x1) - Can be long or short. I would recommend the long one for this project. But if you have short then take 3 LEDs Arduino Power Cable (x1) LEDs (The number of LEDs should be between 3 to 8) The process- 1. Attach 1 LED on the board. Rememb...