filmov
tv
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
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