ESP32 tutorial: What do you have to know about the ESP32 microcontroller?

ESP32 Tutorial: What do you have to know about the ESP32 microcontroller?

There is a follow-up model of the ESP8266, a very powerful microcontroller with a low purchasing price:

The ESP32 also produced by Espressif Systems. 

In this tutorial you learn :

  • Technical specifications of the ESP32
  • Pinout of the ESP32
  • Power supply of the ESP32, also including powering with a battery
  • Power modes and power consumption of the ESP32
  • Configure the ESP32 board in the Arduino IDE

Table of Contents

What is the ESP32?

The ESP32 is a powerful 32 bit microcontroller with integrated Wi-Fi, full TCP/IP stack for internet connection and Bluetooth 4.2. Due to the low cost combined with great power and the opportunity to connect the ESP32 to many other electronic devices, the microcontroller is well suited for IoT projects.

Technical specifications of the ESP32

  • TTensilica Xtensa 32-bit LX6 microprocessor with 2 cores
  • Power supply: 2.3V – 3.6V
  • Current consumption: 20µA – 240mA. In DeepSleep-Mode only 5µA
  • Operating temperature range: -40°C – 125°C
  • External flash memory: up to 16 MB is supported
  • Interfaces
    • UART/SDIO/SPI/I2C/I2S/IR Remote Control
    • 36 programmable I/O pins max 20mA
    • 2 analog input 0V to 1V with 12 bit resolution
    • all inputs tolerate maximum 3.6V
  • Network
    • WiFi
      • WiFi 802.11 b/g/n 2.4 GHz with WPA/WPA2 PSK
      • ipv4 and ipv6 from Arduino Core 2.5.0
      • UDP and TCP with 5 simultaneous connections as maximum
      • Bandwidth: 150 to 300 kByte/s
      • Latency: < 10ms
    • Bluetooth: v4.2 BR/EDR and Bluetooth Low Energy (BLE)

If you want a full comparison of the technical specifications of the ESP32 against the ESP8266 boards and different Arduino boards, you will find this comparison in this article.

Pinout of the ESP32 NodeMCU

ESP32 pinout
WordPress Tables Plugin

Power supply of the ESP32 NodeMCU

When we want to know what possibilities we have to supply power to the ESP32, we have to understand what are the different voltage levels on the PCB, starting from the supply pins and ending at the microprocessor itself.

The following picture shows a schematic picture of the voltage levels on the ESP32 NodeMCU. The additional tables show the voltage related specifications of the microprocessor and the voltage regulator.

ESP32 voltage overview

Microcontroller

Minimum Voltage

Typical Voltage

Maximum Voltage

ESP32

2.3V

3.3V

3.6V

Voltage Regulator

Output Voltage

Maximum Input Voltage

Maximum Output Current

AMS1117

3.3V

15V

1A

The first and also the easiest possibility for a power supply is the 5V USB cable. But because the ESP32 runs on 3.3V, there is a built-in voltage regulator to transform the 5V of the USB connection to the desired 3.3V. The 3.3V pin of the NodeMCU PCB is also powered from this connection.

The second possibility is to use the VIN pin of the NodeMCU as input for the power supply. The AMS1117 voltage regulator has a maximum input voltage of 15V but in this case the regulator produces a lot of heat because the regulator has no heat sink or cooling fan for heat dissipation. Therefore a voltage between 7V and 12V is recommended when the ESP32 is powered by the VIN pin.

There are also multiple options to power the ESP32 with different kinds off batteries. This is particular interesting when you want to build a project that independent of a normal power supply like an outdoor weather station.

If the maximum voltage of the battery is higher than the maximum voltage of the ESP32 (3.6V), you have to use a voltage regulator to reduce the voltage to 3.3V. The output of the voltage regulator is then connected to the 3.3V pin of the ESP32 board.

My recommendation for a battery power supply is the LiFePO4 battery, because you do not need any extra voltage regulator between the ESP32 and the battery and they are rechargeable. Also LiFePO4 batteries have a capacity up to 6,000mAh, similar to LiPo and Li-ion batteries that gives your project a long lifetime in combination with a power mode that reduces the power consumption to a minimum.

Power modes and power consumption of the ESP32

When Wi-Fi is enabled, the chip switches between Active and Modem-sleep modes. Therefore, power consumption changes accordingly.

WordPress Tables Plugin

RTC = Real Time Clock
ULP co-processor = Ultra-Low-Power Co-processor

Active mode
The chip radio is powered on. The chip can receive, transmit, or listen.

Modem-sleep mode
The CPU is operational and the clock is configurable. The Wi-Fi/Bluetooth base-band and radio are disabled. In Modem-sleep mode, the CPU frequency changes automatically. The frequency depends on the CPU load and the peripherals used.

Light-sleep mode
The CPU is paused. The RTC memory and RTC peripherals, as well as the ULP co-processor are running. Any wake-up events (MAC, host, RTC timer, or external interrupts) will wake up the chip.

Deep-sleep mode
Only the RTC memory and RTC peripherals are powered on. Wi-Fi and Bluetooth connection data are stored in the RTC memory. The ULP co-processor is functional.

Hibernation mode
The internal 8 MHz oscillator and ULP co-processor are disabled. The RTC recovery memory is powered down. Only one RTC timer on the slow clock and certain RTC GPIOs are active. The RTC timer or the RTC GPIOs can wake up the chip from the Hibernation mode.

Select the ESP32 board in the Arduino IDE

  1. Make sure you have the latest version of the Arduino IDE installed. You can download the last version of the official website.
  2. The Arduino IDE supports a whole range of different Arduino boards after installation. Since we do not want to program an Arduino board but the NodeMCU board we have to introduce the NodeMCU board to the IDE. This is quite easy. Just klick on File → Preferences. Insert the following URL for the Additional Board Manager URLs.

https://dl.espressif.com/dl/package_esp32_index.json

Arduino IDE Preferences
ESP32 Board Manager URL

If you already have the ESP8266 boards URL, you can separate the URLs with a comma as follows:
https://dl.espressif.com/dl/package_esp32_index.json, http://arduino.esp8266.com/stable/package_esp8266com_index.json

  1. Now we have to install the ESP32 drivers. Open the boards manager and go to Tools > Board > Boards Manager. Search for ESP32 and press install button for the “ESP32 by Espressif Systems“
Arduino IDE Board Manager
Arduino IDE Board Manager ESP32

Conclusion

In my opinion the ESP32 is a powerful microcontroller compared with an intuitive handling if you are familiar with the ESP8266. The only downside in my opinion is the width of the board because like the NodeMCU V3 it does not fit on the standard breadboard. Do you tried the ESP32 and what do you think about it? Leave a comment below.

7 Responses

Leave A Comment