- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
Configure ESP32 in Arduino IDE in 30 Seconds!
New to ESP32? Here’s your first ever project — Blink an LED using Arduino IDE!
This super simple tutorial helps you test if your ESP32 board is working and ready for more IoT magic.
We use GPIO 2, which is usually connected to the onboard LED. If not, connect an external LED to pin 2 and GND.
Code used:
void setup() {
pinMode(2, OUTPUT);
}
void loop() {
digitalWrite(2, HIGH);
delay(500);
digitalWrite(2, LOW);
delay(500);
}
Don't forget to:
Select the correct board: ESP32 Dev Module
Check COM Port via Device Manager
Install ESP32 in Arduino IDE (Board Manager URL in comments)
Subscribe to Hobitronics for daily Arduino, IoT & Electronics content!
#ESP32 #ArduinoIDE #LEDblink #ArduinoProjects #Hobitronics #ElectronicsDIY #IoTProjects #TechShorts #Microcontroller #EmbeddedSystems
Видео Configure ESP32 in Arduino IDE in 30 Seconds! канала Hobitronics
This super simple tutorial helps you test if your ESP32 board is working and ready for more IoT magic.
We use GPIO 2, which is usually connected to the onboard LED. If not, connect an external LED to pin 2 and GND.
Code used:
void setup() {
pinMode(2, OUTPUT);
}
void loop() {
digitalWrite(2, HIGH);
delay(500);
digitalWrite(2, LOW);
delay(500);
}
Don't forget to:
Select the correct board: ESP32 Dev Module
Check COM Port via Device Manager
Install ESP32 in Arduino IDE (Board Manager URL in comments)
Subscribe to Hobitronics for daily Arduino, IoT & Electronics content!
#ESP32 #ArduinoIDE #LEDblink #ArduinoProjects #Hobitronics #ElectronicsDIY #IoTProjects #TechShorts #Microcontroller #EmbeddedSystems
Видео Configure ESP32 in Arduino IDE in 30 Seconds! канала Hobitronics
Комментарии отсутствуют
Информация о видео
30 июня 2025 г. 17:30:14
00:00:44
Другие видео канала





















