Posted in

ESP Variants

The world of Expressif‘s ESP line can be daunting to say the least.

These cheap and capable microcontrollers have really changed the game in IOT devices. They are often equipped with built in Wifi and can even contain Bluetooth. There are a decent amount of GPIOs (general purpose input output) available for your electronics projects. Further, they have a very good documentation and large community around it.

Before we begin we should understand a few differences in the “packages” Expressif supplies these marvelous little powerhouses in.

  • SOC (System on a Chip)
    • These are the most basic version of an ESP variant. More likely than not you will not be dealing with these fingernail sized QFN packages. These are more suitable for large scale manufacturers who need lower cost and customizability.
  • Modules
    • Modules are closer to where we are headed. These are still small but include the microprocessor and integrations on a single module. Often they are available with castellated holes on the side of the PCB to allow for easy hand soldering. They can also be available with PCB or externally attached antennas.
  • Development Kits
    • More likely than not, this is what you are working with. These are complete packages, often including USB port for connection to a PC for programming, onboard buttons and LEDs and voltage regulation to take the 5V of the USB to power the 3.3V ESP SOC. Further, these will include all, or some of the GPIO pins broken out for your use. There are ALOT of variants of development boards available by other vendors. As a single example, the NodeMCU is an open-source implementation of the ESP8266 SOC with breakouts for pins and voltage regulation (among more)…..but there are HUNDREDS of derivative boards that all are based on one of the Expressif SOCs.
    • Development boards are available in multiple of sizes from micro to full breakouts. Just keep in mind, the smaller you go, the more GPIO you are likely to lose amongst other board features you may use (ie: on board LEDs or switches).

Common ESP variants
There are a multitude of ESP variants produced. Below I’ll list the most common ones you will come across. Don’t take this as as exhaustive reference. There are many more available but this is focused on the common variants for the home hobbyist and automation makers. If you have a really simple project in mind, say a temperature sensor that updates your MQTT server with reading than really anyone will do so don’t get get caught up in decision paralysis. If you’re following along with a tutorial, the author will probably tell you which you need.

ModelMCU CoreWi-FiBluetoothGPIOFlash /
RAM
ExtrasBest For
ESP82661x Tensilica L106~17Up to 16MB / 160KBLow-cost Wi-Fi projectsBeginners, simple IoT
ESP322x Xtensa LX6✅ (BT 4.2)~34Up to 16MB / 520KBADCs, DACs, touch sensors, etc.General-purpose IoT
ESP32-S21x Xtensa LX7~434MB RAM (external)/320KBUSB OTG, better securityUSB devices, improved security
ESP32-C31x RISC-V✅ (BT 5.0)~22400KB SRAM / 384KB ROMBLE Mesh, low-power friendlyLow-power, security-conscious
ESP32-S32x Xtensa LX7✅ (BT 5.0)~44512KB RAM + ext RAMAI instructions, USB OTGVision/AI, speech processing
ESP32-C61x RISC-V✅ (Wi-Fi 6)✅ (BT 5.2)~23Similar to C3First Wi-Fi 6 + BLE 5.2 chiplow-power apps

Now we can go a bit further down the rabbits hole. Each ESP variant has a family of submodels, and this is where things can get a little confusing if you’re not deep into the weeds. These submodels usually indicate:

  • Form factor (module type)
  • Flash size
  • Antenna type
  • Special features (e.g., camera support, more GPIO)

Let’s break down the submodel naming for each major ESP family:

ESP8266 Submodels

SubmodelNotes
ESP-01Very small, 2 GPIOs. Great for ultra-simple use.
ESP-07 / ESP-12More GPIOs, PCB or external antenna options.
ESP-12E/FMost commonly used in NodeMCU boards.
ESP-WROOM-02Official Espressif module version.

Typical flash sizes: 512KB – 4MB

ESP32 Submodels

SubmodelNotes
ESP32-WROOM-32Most common; general-purpose.
ESP32-WROVERAdds external PSRAM (for AI/vision etc.)
ESP32-PICOIntegrated crystal, flash & passives – super small
ESP32-CAMCamera module, includes OV2640 + microSD

Common flash sizes: 4MB, 8MB, 16MB
PSRAM: Typically 2MB for WROVER models.

ESP32-S2 Submodels

SubmodelNotes
ESP32-S2-WROOMStandard S2 module
ESP32-S2-WROVERAdds PSRAM for larger data buffers

Use these for USB HID, secure applications, or projects needing OTA.

SubmodelNotes
ESP32-C3-WROOM-02Most common module
ESP32-C3-WROOM-01Different antenna/config options available

C3 modules are more compact, lower power, and good for secure, BLE-heavy apps.

ESP32-S3 Submodels

SubmodelNotes
ESP32-S3-WROOMBase model
ESP32-S3-WROVERWith PSRAM – ideal for AI/vision processing

S3 is geared toward AI workloads and has vector instructions.

ESP32-C6 Submodels (with Wi-Fi 6)

SubmodelNotes
ESP32-C6-WROOM-1Main current submodel
ESP32-C6-WROOM-1UUses u.FL connector for external antenna

Still early in adoption but will grow fast due to Wi-Fi 6 and BLE 5.2.

Some General Variant Notes:

  • WROOM = Standard module.
  • WROVER = Includes PSRAM.
  • PICO = Compact SoC with integrated components.
  • -xxMB = Indicates flash size sometimes (e.g., ESP32-WROOM-32D-4MB)
  • -U = External antenna connector (u.FL).

This is meant to simply be a list of the variants and specifications of most of the common ESP variants available today. It is meant to summarize their design limitations and inherent strengths. Stay tuned, we’re gonna make some projects with these little wonders!

Leave a Reply

Your email address will not be published. Required fields are marked *