WiFi MCUs

ESP32

Classic dual-core Wi-Fi and Bluetooth MCU that remains one of the most searched and widely supported maker wireless chips.

China-madeEspressif SystemsActiveEasy

Best For

Maker and embedded projects needing Wi-Fi 4 + Bluetooth 4.2 + BLE connectivity with Mature ecosystem and Arduino.

Avoid If

You need a fully validated production BOM today; verify module availability, SDK maturity, and English documentation first.

Quick Decision Notes

ESP32 is indexed as a wifi mcus part from Espressif Systems. ChipScout tracks it by practical maker-facing dimensions: interfaces, library readiness, estimated price, field-level sources, and whether the page is strong enough for selection rather than only lookup.

Technical Specifications

CoreDual-core Xtensa LX6Source: Espressif Systems
Clock Speed240 MHzSource: Espressif Systems
WirelessWi-Fi 4 + Bluetooth 4.2 + BLESource: Espressif Systems
Working Voltage3.3VSource: Espressif Systems

Common Use Cases

  • Connected sensors
  • Smart home devices
  • Low-cost IoT modules

Known Issues

  • Module naming, flash size, and pin exposure vary by vendor board
  • English examples and library support should be verified before production use

Interfaces and Library Support

Interfaces
I2CSPIUARTI2SADCPWM
Wireless
Wi-Fi 4Bluetooth 4.2BLE
Voltage
3.3V
Libraries
Arduino verifiedMicroPython verified
Data Integrity98% confidence
Sourcehttps://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf
Last verified2026-05-19
Core specsVerified
PinoutAvailable
Library supportChecked
Price rangePresent
Found a wrong spec?

Every field is meant to be source-backed. Corrections should include a datasheet URL, vendor page, module photo, or reproducible library test.

Submit correction

Source Resources

Pinout Table

VCC3.3VPower the module from a rail that matches the breakout board, not just the bare IC.
GNDCommon groundConnect ground between the controller, sensor/module, and external power supply.
SDAMCU I2C dataUse pull-ups appropriate for the board voltage; many modules already include them.
SCLMCU I2C clockKeep wiring short for breadboard prototypes and lower bus speed if unstable.
SCKMCU SPI clockShare with other SPI devices when chip select lines are separate.
MOSIMCU SPI data outRequired for most displays, radios, and writable devices.
MISOMCU SPI data inMay be optional for write-only displays.
CSAny free GPIOUse one chip-select pin per SPI peripheral.
TXMCU RXCross TX to RX between the module and controller.
RXMCU TXCheck whether the module is 3.3V logic before connecting to 5V boards.

Pinout is not yet source-verified. Use the table as an integration checklist, then confirm exact pins against the module vendor page before wiring hardware.

Common Wiring

VCC

Power the module from a rail that matches the breakout board, not just the bare IC.

GND

Connect ground between the controller, sensor/module, and external power supply.

SDA

Use pull-ups appropriate for the board voltage; many modules already include them.

SCL

Keep wiring short for breadboard prototypes and lower bus speed if unstable.

Arduino Example

#include <Wire.h>

void setup() {
  Serial.begin(115200);
  Wire.begin();
  Serial.println("ESP32 I2C wiring smoke test");
}

void loop() {
  // Replace this with the maintained ESP32 library call.
  Serial.println("Check ESP32 on the I2C bus, then read a sample.");
  delay(1000);
}

MicroPython Example

from machine import Pin, I2C
import time

i2c = I2C(0, scl=Pin(1), sda=Pin(0), freq=100000)
print("ESP32 I2C devices:", i2c.scan())

while True:
    # Replace with the maintained ESP32 driver call.
    print("read ESP32 sample")
    time.sleep(1)

Recommended Development Boards

ESP32 official dev board

Best first choice when available because USB, regulator, boot buttons, and pin labels match vendor docs.

ESP32-S3 DevKitC

Useful baseline for USB, I2C, SPI, UART, and Arduino/MicroPython smoke tests.

Breadboard-friendly module carrier

Use when validating power draw, pin exposure, and module variant differences.

Alternative Model Reasons

Air101WiFi MCUsCompare this option when price or module availability is the deciding constraint.
Air601WiFi MCUsCompare this option when price or module availability is the deciding constraint.
BK7231NWiFi MCUsCompare this option when price or module availability is the deciding constraint.
BK7231TWiFi MCUsCompare this option when price or module availability is the deciding constraint.

Common Questions

What is ESP32 best used for?

Maker and embedded projects needing Wi-Fi 4 + Bluetooth 4.2 + BLE connectivity with Mature ecosystem and Arduino.

Does ESP32 support Arduino or MicroPython?

ESP32 has verified Arduino support and verified MicroPython support.

What interfaces does ESP32 use?

ESP32 lists I2C, SPI, UART, I2S, ADC, PWM; wireless support is Wi-Fi 4, Bluetooth 4.2, BLE.

Compare ESP32 vs Air101

Alternatives and Related Parts