Mr. Seng Theara
Install Arduino IDE
Power Supply
Install Arduino IDE
Power Supply
Choose based on your OS and download the software
Since the newest version (2.3.7) has some problem with the timeout, so we gonna use the version 2.3.5 instead
CP2102 Driver Installation
Power Supply
This IC 2102 is used to convert the data from your laptop to the ESP32. Mostly on Window, It doesn't have the driver
CP2102 Driver Installation (Windows users only. macOS is fine. Linux users—>figure it out yourself 😄)
Power Supply
ESP32 Setup
Click File and choose Preferences
ESP32 Setup
Click File and choose Preferences
copy this text:
https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
paste in here
ESP32 Setup
Click File and choose Preferences
copy this text:
https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
paste in here
Choose Board Manager
Search for ESP32 and install version 2.0.17
ESP32 Setup
Search for
FireBeetle-ESP32
Select COM for the ESP32
Testing the Code with ESP32 on Arduino IDE
void setup() {
// put your setup code here, to run once:
pinMode(12, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(12, HIGH);
delay(2000);
digitalWrite(12, LOW);
delay(2000);
}
Testing