0

members

Easy Basics: Project 072s ESP32 Development board - Troubleshooting tips

of Acoptex.com in ESP8266 ESP-32

Basics: Project 072s

Project name: ESP32 Development board - Troubleshooting tips

Tags: ESP32 Dev Module, ESP32 development board, ESP32 Development board with WiFi and Bluetooth, ESP32-DevKitC V4 development board, ESP-WROOM-32 module with ESP32‑D0WDQ6 chip, Espressif Systems, ESP32-based development board, ESP32 modules, ESP32-WROOM-32, ESP32-WROOM-32U, ESP32-WROOM-32D, ESP32-SOLO-1, USB-UART bridge, IOT, ESP-WROOM-32 Dev Module, ESP32 DEVKITV1, troubleshooting tips, troubleshooting guide, common problems

In this project, you need these parts :

1. ESP32 development board with WiFi and Bluetooth and USB A / micro USB B cable 1 pc

2.Arduino IDE ( you can download it from here  )

General

There are a lot of different development boards made. You can find more information about them here

The ESP32 development board has some common problems, specially when you are trying to upload new sketches or install the ESP32 add-on on the Arduino IDE (version 1.8.5). This project is to describe common issues with the ESP32 programmed with Arduino IDE and shows how to fix them. If you will use other version of Arduino IDE it can cause other unexpected problems and errors.

1. How to install the ESP32 add-on for the Arduino IDE?

There’s an add-on for the Arduino IDE that allows you to program the ESP32 using the Arduino IDE and its programming language. Follow one of the next projects links to prepare your Arduino IDE to work with the ESP32 on your operating system - Windows (using GIT GUI) or Windows (directly on Arduino IDE) or Mac and Linux.

2. Why I cannot see the ESP32 boards in the Arduino IDE Tools menu (Windows operating system)?

If you can’t see the ESP32 boards in your Arduino IDE after the installation of the ESP32 add-on on Windows operating system - re-run the get.exe file as an administrator to try to install the ESP32 board:

After running get.exe file, do restart of the Arduino IDE and you will see the ESP32 boards available.

If you still can’t see the boards in the Arduino IDE, make sure you click on the small arrow (see the figure below) to scroll all the way down through the boards:

If at this moment you still can’t find your ESP32 board in the list, we highly recommend to repeat the installation process from the begining: Remove the entire folder /espressif/esp32 and install the Arduino IDE version 1.8.5 from the begining. Then, repeat the process to ensure that you are installing the boards in the right installation location/path and that Git GUI is downloading the files to the right location. 

3. If I get an error - "Failed to connect to ESP32: Timed out" what to do?

You are normally getting this error when you try to upload a new sketch to your ESP32. It happens because your ESP32 is not in flashing/uploading mode. Select the right ESP32 board name and COM port. Compile and upload the sketch to your ESP32 development board. You need to hold the ESP32 on-board Boot button while uploading a new sketch to your ESP32 development board

Press the EN button to restart the ESP32 and run the new uploaded sketch.

You need to repeat this process every time you want to upload a new sketch.

4. If I get an error - "C:\\Users\\ User\\Documents \\Arduino\\ hardware\\ espressif\\ esp32/tools /xtensa-esp32-elf /bin/ xtensa-esp32- elf-g++”: file does not exist" - what to do?

If Arduino IDE fails to compile a new sketch to your ESP32 board after the ESP32 add-on installation, we recommend to re-run the get.exe file. Follow all the steps described above in issue 2. Sometimes you can have multiple Arduino IDE versions installed (portable and local installations) on Windows operating system. Make sure that you are running the Arduino IDE program where you have installed the ESP32 add-on.

5. COM Port is not found/not available

If you have your ESP32 board pluged in to your PC but you can’t find the ESP32 port available in your Arduino IDE (it has a grey color) it can be one of these problems : 1. USB drivers missing or 2. USB cable is not the data cable - it's for charging only. 

If you don’t see your ESP’s COM port available, this often means you don’t have the USB drivers installed. Take a closer look at the chip next to the voltage regulator on board and check its name. For example we have The ESP32 DEVKIT V1 DOIT board  - it uses the CP2102 chip. Go to Google.com and search for your particular chip to find the drivers and install them in your operating system. 

You can download CP2102 drivers from the Silicon Labs website. Install drivers and restart the Arduino IDE. You will see the COM port in the Tools menu when you run Arduino IDE again.

If you have the drivers installed, but you can’t see your device, double-check that you’re using a USB data cable. Some USB cables are often used for charging only. If you use a proper USB cable it will solve your problem.

6. My Arduino IDE Serial Monitor doesn’t work properly

If the ESP32 is only showing the weird text or gibberish messages in your Arduino IDE Serial Monitor make sure that you have the proper COM port selected and set correct baud rate. We are normally using 115200 or 9600 baud rate in our projects.

7. I cannot make the ESP32 add-on work with Arduino IDE

If you still cannot get the ESP32 add-on working with the Arduino IDE we recommend to try programming your ESP32 board with Atom text editor and PlatformIO IDE

8. Error compiling WiFiScan sketch

If you try to upload the ESP32 WiFiScan.ino sketch and getting the similar error message:

"In function ‘void setup()’:

ScanNetworks:52: error: ‘class WiFiClass’ has no member named ‘firmwareVersion’

String fv = WiFi.firmwareVersion();"

Probably your Arduino IDE is compiling the WiFi library for the Arduino board (instead of using the ESP32 WiFi library). If you don’t use WiFi shield you need to remove the WiFi folder from your Arduino IDE program directory (move it to your desktop, for example): C:\Program Files (x86)\Arduino\libraries\WiFi. Restart your Arduino IDE and try to compile the code again.



Other projects of Acoptex.com
Medium Basics: Project 083w Sipeed Maixduino board - Using PlatformIO IDE of Acoptex.com in Sipeed Maixduino 08-08-2019
Medium Basics: Project 083e Sipeed Maixduino board - Uploading MaixPy of Acoptex.com in Sipeed Maixduino 04-08-2019
Medium Basics: Project 083f Sipeed Maixduino board - Using MycroPython of Acoptex.com in Sipeed Maixduino 04-08-2019

Published at 01-09-2018
Viewed: 2251 times