Programming "Blinking Internal LED" on ESP32 using Arduino IDE
Hello everyone! This article contains step-by-step how to program on ESP32 using Arduino IDE. The example below will show the simplest program for ESP32, which is making it's internal LED blink with interval timing. STEP 1: Required Hardwares 1. ESP32 I am going to use ESP32 Devkit V1 with 30 pins . 2. PC To develop the code and power source. 3. Micro USB Cable ESP32 uses micro USB cable to connect to it's power source and/or source code 4. Breadboard (optional) I use breadboard to ensure ESP32's pin safety STEP 2: Required Softwares 1. Installing Arduino IDE, you can download it from: https://www.arduino.cc/en/software 2. Installing the correct board you are using by going to File > Preferences. Insert this URL into "Additional Boards Manager URLs": https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json 3. Go to Tools > Board > Boards Manager and then search and install esp32 module. Thereafter, choose which board ...
Comments
Post a Comment