How to blink an LED with arduino

Опубликовано: 23 Июль 2026
на канале: Robixa
0

Learn how to blink an LED using an Arduino UNO in this easy beginner-friendly tutorial. In this first ROBIX project, you'll learn the basics of Arduino wiring, uploading code, and controlling an LED using simple programming.

🛠 Components Used:
• Arduino UNO
• LED
• 220Ω resistor
• Breadboard
• Jumper wires
• USB cable

💻 Code Used:

int LED_Pin = 2;
void setup() {
pinMode(LED_Pin, OUTPUT);
}

void loop() {
digitalWrite(LED_Pin, HIGH);
delay(1000);
digitalWrite(LED_Pin, LOW);
delay(1000);
}

🚀 This is the perfect first Arduino project for beginners starting robotics and electronics.

🔔 Subscribe to ROBIX for more Arduino, robotics, IoT, and DIY tech tutorials every week.

#Arduino #ArduinoUNO #Electronics #Robotics #DIY #BeginnerArduino #LED #ArduinoProjects #ROBIX