- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
Arduino 3 LED Blink Program | Simple Beginner Project | S01
Welcome to Build With Sahil 🚀
Not Just Theory, We Build Real Technology.
In this video, I demonstrate a simple Arduino project where three LEDs (Green, Yellow, Green) are connected and controlled using digital output pins.
This project helps beginners understand:
• Pin configuration using pinMode()
• Digital output using digitalWrite()
• Timing control using delay()
• Basic LED interfacing with Arduino
💻 Arduino Code:
int o = 11; // LED 1 connected to pin 11
int t = 12; // LED 2 connected to pin 12
int th = 13; // LED 3 connected to pin 13
void setup() {
pinMode(o, OUTPUT);
pinMode(t, OUTPUT);
pinMode(th, OUTPUT);
}
void loop() {
digitalWrite(o, HIGH);
digitalWrite(t, LOW);
digitalWrite(th, HIGH);
delay(1000); // 1 second delay
digitalWrite(o, LOW);
digitalWrite(t, HIGH);
digitalWrite(th, LOW);
delay(1000); // Change delay to control speed
}
You can modify the variable names, pin numbers, and delay time according to your project requirements.
If you found this helpful, like, share, and subscribe for more Arduino, IoT, and automation projects.
⚡ Build With Sahil
Real Innovation. Real Engineering. Real Impact.
Видео Arduino 3 LED Blink Program | Simple Beginner Project | S01 канала Build With Sahil
Not Just Theory, We Build Real Technology.
In this video, I demonstrate a simple Arduino project where three LEDs (Green, Yellow, Green) are connected and controlled using digital output pins.
This project helps beginners understand:
• Pin configuration using pinMode()
• Digital output using digitalWrite()
• Timing control using delay()
• Basic LED interfacing with Arduino
💻 Arduino Code:
int o = 11; // LED 1 connected to pin 11
int t = 12; // LED 2 connected to pin 12
int th = 13; // LED 3 connected to pin 13
void setup() {
pinMode(o, OUTPUT);
pinMode(t, OUTPUT);
pinMode(th, OUTPUT);
}
void loop() {
digitalWrite(o, HIGH);
digitalWrite(t, LOW);
digitalWrite(th, HIGH);
delay(1000); // 1 second delay
digitalWrite(o, LOW);
digitalWrite(t, HIGH);
digitalWrite(th, LOW);
delay(1000); // Change delay to control speed
}
You can modify the variable names, pin numbers, and delay time according to your project requirements.
If you found this helpful, like, share, and subscribe for more Arduino, IoT, and automation projects.
⚡ Build With Sahil
Real Innovation. Real Engineering. Real Impact.
Видео Arduino 3 LED Blink Program | Simple Beginner Project | S01 канала Build With Sahil
Комментарии отсутствуют
Информация о видео
13 февраля 2026 г. 16:19:26
00:00:28
Другие видео канала
