Espressif IoT Development Framework

Configuration:

framework = espidf

Espressif IoT Development Framework. Official development framework for ESP32 chip

Tutorials

Note

Each release of the Espressif 32 platform uses a specific version of ESP-IDF. The latest version of the platform only supports the latest stable version of the framework.

Configuration

The general project configuration (default optimization level, bootloader configuration partition tables, etc) is set in a single file called sdkconfig in the root folder of the project. This configuration file can be modified via a special target called menuconfig (PlatformIO v4.3.0 greater is required):

pio run -t menuconfig

Warning

ESP-IDF requires some extra tools to be installed in your system in order to build firmware for supported chips. Most of these tools are available in PlatformIO ecosystem as standalone packages, but in order to use configuration tool called menuconfig several additional packages need to be installed on Linux-based systems:

libncurses5-dev flex bison

More details about required packages can be found in the official ESP-IDF documentation - Standard Setup of Toolchain for Linux.

Hint

If menuconfig is not showed properly in the integrated VS Code terminal try changing the default terminal shell by clicking the dropdown menu on the top-right of the terminal panel and selectiing the Select Default Shell option.

Hint

In case the UP and DOWN arrows don’t work in menuconfig try using the J key to move the cursor down and K to move the cursor up. Another option is to use - and + keys on the numeric keypad.

Project Structure

The ESP-IDF framework requires an unusual project structure because most of the framework configuration is performed by the native for the ESP-IDF build system called CMake.

A typical PlatformIO project for the ESP-IDF framework must have the following structure:

project_dir
├── include
├── src
│    ├── CMakeLists.txt
│    └── main.c
├── CMakeLists.txt
└── platformio.ini

Tip

It’s also possible to use the default ESP-IDF project structure with main folder. To specify main as the folder with source files use src_dir option, for example:

[platformio]
src_dir = main

[env:esp32dev]
platform = platformio/espressif32
framework = espidf
board = esp32dev

Besides the files related to PlatformIO project, there are several additional ESP-IDF-specific files: the main CMakeLists.txt, project-specific CMakeLists.txt in src_dir and optional default configuration file sdkconfig.defaults. CMakeLists.txt files enable features supported by the ESP-IDF’s build system, e.g. ULP configuration, adding extra components, etc. A typical CMakeLists.txt file in the root folder has the following content:

# The following lines of boilerplate have to be in your project's CMakeLists
# in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.16.0)

include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(project-name)

The second CMakeLists.txt in src_dir is responsible for controlling the build process of the component and its integration into the overall project. The minimal component CMakeLists.txt file simply registers the component to the build system using idf_component_register:

idf_component_register(SRCS "foo.c" "bar.c")

The files specified using idf_component_register are used ONLY for generating build configurations, but it’s highly recommended to specify all application source files in order to keep the project compatible with the usual ESP-IDF workflow.

Warning

By default PlatformIO expects source files to be located in the src folder. At the same time, the default location for source files within the ESP-IDF build system is a special folder with the name main. Renaming the main component may require users to manually specify additional dependencies:

idf_component_register(SRCS "main.c" REQUIRES idf::mbedtls)

More details in the official ESP-IDF documentation - Renaming main component.

Due to the current limitations of CMake file-based API, there is no way of generating build configuration for source files written in various programming languages if they are not specified in idf_component_register command. If your project contains libraries written in languages that differ from the language used for the main application you need to create an empty file with the desired extension (e.g. *.cpp for C++) in order to force CMake generate build configuration for this language.

Note

Build configuration generated for source files specified in idf_component_register is also used as the base build environment for project sources (including libraries).

ESP-IDF components

ESP-IDF modules as modular pieces of standalone code might be useful for structuring reusable code or including third party components that aren’t part of ESP-IDF.

These components contain either a single CMakeLists.txt file which controls the build process of the component and its integration into the overall project. An optional Kconfig file defines the component configuration options that can be set via menuconfig. Some components may also include Kconfig.projbuild and project_include.cmake files, which are special files for overriding parts of the project. All valid components will be compiled as static libraries and linked to the final firmware. There are two possible ways of adding extra components to PlatformIO project:

  • By adding a new component to an optional folder called components in the root of your project. This folder will be automatically scanned for valid components.

  • Using EXTRA_COMPONENT_DIRS option in the root CMakeLists.txt file. This option represents a list of extra directories to search for components.

An example of specifying esp-aws-iot as an extra component:

# The following lines of boilerplate have to be in your project's CMakeLists
# in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.16)

include($ENV{IDF_PATH}/tools/cmake/project.cmake)
list(APPEND EXTRA_COMPONENT_DIRS esp-aws-iot)
project(subscribe_publish)

Warning

Since src_dir is also passed to CMake as an extra component, you should only append to EXTRA_COMPONENT_DIRS variable in order not to override the default package.

Since the build may not work correctly if the full path to sources is greater than 250 characters (see CMAKE_OBJECT_PATH_MAX) it might be a good idea to keep modules close to the project files.

ULP coprocessor programming

If you want to take measurements using ADC, internal temperature sensor or external I2C sensors, while the main processors are in deep sleep mode you need to use ULP coprocessor. At the moment ULP can be used only with the Espressif IoT Development Framework.

All ULP code, usually written in assembly in files with .S extension, must be placed into a separate directory with the name ulp in the root folder of your project. So your project structure should look like this:

project_dir
├── include
├── src
│    ├── CMakeLists.txt
│    └── main.c
├── ulp
│    └── ulp_code.S
├── CMakeLists.txt
└── platformio.ini

Since PlatformIO uses the code model generated by CMake it’s mandatory to specify ULP source files in CMakeLists.txt as well. An example of typical CMakeLists.txt for ULP:

idf_component_register(SRCS "ulp_adc_example_main.c")
#
# ULP support additions to component CMakeLists.txt.
#
# 1. The ULP app name must be "ulp_main"
set(ulp_app_name ulp_main)
#
# 2. Specify all assembly source files.
#    Paths are relative because ULP files are placed into a special directory "ulp"
#    in the root of the project
set(ulp_s_sources "../ulp/adc.S")
#
# 3. List all the component source files which include automatically
#    generated ULP export file, ${ulp_app_name}.h:
set(ulp_exp_dep_srcs "ulp_adc_example_main.c")
#
# 4. Call function to build ULP binary and embed in project using the argument
#    values above.
ulp_embed_binary(${ulp_app_name} ${ulp_s_sources} ${ulp_exp_dep_srcs})

See full examples with ULP coprocessor programming:

More details are located in the official ESP-IDF documentation - ULP coprocessor programming.

Security Features

Warning

This functionality can brick your device if used incorrectly.

Proceed with extreme caution. Everything you do is at your own risk.

Warning

By default, enabling Flash Encryption and/or Secure Boot will disable JTAG debugging. On first boot, the bootloader will burn an eFuse bit to permanently disable JTAG at the same time it enables the other features.

Tip

It’s strongly recommended to test the security features using the vendor-provided QEMU emulator.

Note

When enabling the Flash Encryption and Secure Boot v2 together, the Flash Encryption should be enabled first.

Note

To use this functionality, the version of the espressif32 development platform must be v6.12.0 or later.

Before you begin working with these security features, make sure to carefully read the official documentation provided by the vendor. Here are several useful pages to get started:

Flash Encryption

Warning

Enabling flash encryption limits the options for further updates of your device. Before using this feature, make sure to read the entire page and fully understand the implications.

Warning

Enabling flash encryption will increase the size of the bootloader, which might require updating partition table offset.

Flash encryption is intended for encrypting the contents of the ESP32’s off-chip flash memory. Once this feature is enabled, firmware is flashed as plaintext, and then the data is encrypted in place on the first boot. As a result, physical readout of flash will not be sufficient to recover most flash contents.

It’s recommended to read the official Flash Encryption Programming Guide to understand the overall workflow before getting started. Here’s an adapted version of that page that uses PlatformIO packages to enable the Flash Encryption Feature on ESP32 ECO V3 target:

  1. Ensure that you have an ESP32 device with default Flash Encryption eFuse settings as shown in Relevant eFuses. At this point, the Flash Encryption must not be already enabled on the chip.

  2. Generate a Flash Encryption key

A random Flash Encryption key can be generated by running:

pio pkg exec --package "platformio/tool-esptoolpy" -- espsecure.py generate_flash_encryption_key my_flash_encryption_key.bin

Set the board_build.encryption_key option in your platformio.ini file to the name of the key:

[env:esp32dev]
platform = platformio/espressif32
framework = espidf
...
board_build.encryption_key = my_flash_encryption_key.bin
  1. Burn the Flash Encryption key into eFuse

Warning

Burning this key into eFuse is a permanent action and cannot be undone.

Where $PORT is the serial port of your target device:

pio pkg exec --package "platformio/tool-esptoolpy" -- espefuse.py --port $PORT burn_key flash_encryption my_flash_encryption_key.bin
  1. Burn the FLASH_CRYPT_CNT eFuse

If you only want to enable Flash Encryption in Development mode and want to keep the ability to disable it in the future, Update the FLASH_CRYPT_CNT value in the below command from 127 to 0x1 (not recommended for production).

pio pkg exec --package "platformio/tool-esptoolpy" -- espefuse.py --port $PORT --chip esp32 burn_efuse FLASH_CRYPT_CNT 127

In the case of ESP32, you also need to burn the FLASH_CRYPT_CONFIG fuse. It can be done by running:

pio pkg exec --package "platformio/tool-esptoolpy" -- espefuse.py --port $PORT --chip esp32 burn_efuse FLASH_CRYPT_CONFIG 0xF
  1. Burn Flash Encryption-related security eFuses

Note

For production use cases, it is highly recommended to burn all the eFuses listed below.

  • DISABLE_DL_ENCRYPT - Disable the UART bootloader encryption access

  • DISABLE_DL_DECRYPT - Disable the UART bootloader decryption access

  • DISABLE_DL_CACHE - Disable the UART bootloader flash cache access

  • JTAG_DISABLE - Disable the JTAG

The respective eFuses can be burned by running:

pio pkg exec --package "platformio/tool-esptoolpy" -- espefuse.py burn_efuse --port $PORT EFUSE_NAME 0x1
  1. Write protect security eFuses

After burning the respective eFuses, we need to write_protect the security configurations. It can be done by burning following eFuse:

pio pkg exec --package "platformio/tool-esptoolpy" -- espefuse.py --port $PORT write_protect_efuse DIS_CACHE

Warning

The write protection of above eFuse also write protects multiple other eFuses. Please refer to the ESP32 eFuse table for more details.

  1. Configure the project

Flash Encryption release mode can be set in the your sdkconfig.defaults as follows:

# Enable Flash Encryption on boot
CONFIG_SECURE_FLASH_ENC_ENABLED=y

# Select the RELEASE mode
CONFIG_SECURE_FLASH_ENCRYPTION_MODE_RELEASE=y

# Select UART ROM download mode (permanently disabled (recommended))
CONFIG_SECURE_DISABLE_ROM_DL_MODE=y

# Select the appropriate bootloader log verbosity (for example info)
CONFIG_BOOTLOADER_LOG_LEVEL_INFO=y

Warning

Note that once release mode is selected, the DISABLE_DL_ENCRYPT and DISABLE_DL_DECRYPT eFuse bits will be burned to disable Flash Encryption hardware in ROM download mode

  1. Add extra upload flags

Since the Flash Encryption feature was enabled in advance and we’re uploading pre-encrypted binaries, we need to add a special --force flag to the upload process using an extra script:

[env:esp32dev]
platform = platformio/espressif32
framework = espidf
...
extra_scripts = force_upload.py
...

The force_upload.py file should contain the following:

Import ("env")

env.Append(UPLOADCMD=" ".join(["$UPLOADCMD", "--force"]))
  1. Build, Encrypt and Upload the binaries

The project can be built via the usual run command.

pio run

The encrypted binaries can be generated by running the encrypt target:

pio run -t encrypt

To upload the encrypted binaries run the combination of the encrypt and upload targets:

pio run -t encrypt -t upload
  1. Secure the ROM download mode

Warning

Please perform the following step at the very end after enabling Flash Encryption and Secure Boot features. Once this eFuse is burned, the espefuse tool can no longer be used to burn additional eFuses.

Disable UART ROM DL mode:

pio pkg exec --package "platformio/tool-esptoolpy" -- espefuse.py --port $PORT burn_efuse UART_DOWNLOAD_DIS
  1. Delete Flash Encryption key on host

Once the Flash Encryption has been enabled for the device, the key must be deleted immediately. This ensures that the host can’t produce encrypted binaries for the same device going forward. This step is important to reduce the vulnerability of the Flash Encryption key.

Secure Bootloader

Secure Boot protects a device from running any unauthorized (i.e., unsigned) code by checking that each piece of software that is being booted is signed. On an ESP32, these pieces of software include the second stage bootloader and each application binary. Note that the first stage (ROM) bootloader does not require signing as it is ROM code and thus cannot be changed.

Warning

Only Secure Boot v2 is supported

Warning

The Secure Boot v2 option is available on ESP32 chips starting from revision v3.0. To enable this option in menuconfig, set CONFIG_ESP32_REV_MIN to v3.0 or higher.

Warning

If Secure Boot or Flash Encryption is enabled, the reset method is set to no_reset to stay in the bootloader after uploading.

Note

Turning on Secure Boot increases the bootloader size, which may require adjusting the partition table offset.

Note

By default, the bootloader binary is not programmed unless the CONFIG_SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT option is explicitly enabled in your sdkconfig file.

It’s recommended to read the official Secure Boot Programming Guide to understand the overall workflow before getting started. Here’s an adapted version of that page that uses PlatformIO packages to build, sign and upload binaries:

Warning

The instructions below are intended for ESP32 targets. For other variants open Secure Boot Programming Guide and select your target from the menu on the left.

  1. Generate Secure Boot Signing Private Key:

pio pkg exec --package "platformio/tool-esptoolpy" -- espsecure.py generate_signing_key --version 2 --scheme rsa3072 secure_boot_signing_key.pem

Hint

For production environments, we recommend generating the key pair using OpenSSL or another industry-standard encryption program.

Note

secure_boot_signing_key.pem is the default key name. If you change it, don’t forget to update your project configuration accordingly. For example, by adding the CONFIG_SECURE_BOOT_SIGNING_KEY="my_sb_signing_key.pem" option to your sdkconfig.defaults.

  1. Generate Public Key Digest:

pio pkg exec --package "platformio/tool-esptoolpy" -- espsecure.py digest_sbv2_public_key --keyfile secure_boot_signing_key.pem --output digest.bin
  1. Burn the key digest in eFuse:

Where $PORT is the serial port of your target device:

pio pkg exec --package "platformio/tool-esptoolpy" -- espefuse.py --port $PORT --chip esp32 burn_key secure_boot_v2 digest.bin
  1. Enable Secure Boot:

pio pkg exec --package "platformio/tool-esptoolpy" -- espefuse.py --port $PORT --chip esp32 burn_efuse ABS_DONE_1
  1. Burn security eFuses:

  • JTAG_DISABLE: Disable the JTAG.

pio pkg exec --package "platformio/tool-esptoolpy" -- espefuse.py burn_efuse --port $PORT JTAG_DISABLE 0x1
  1. Burn Secure Boot related eFuses

The Secure Boot digest burned in the eFuse must be kept readable otherwise the Secure Boot operation would result in a failure. To prevent the accidental enabling of read protection for this key block, the following eFuse needs to be burned:

pio pkg exec --package "platformio/tool-esptoolpy" -- espefuse.py -p $PORT write_protect_efuse RD_DIS

Warning

After burning above-mentioned eFuse, the read protection can’t be enabled for any key. For example, if Flash Encryption which requires read protection for its key is not enabled at this point, then it can’t be enabled afterwards. Please ensure that no eFuse keys are going to need read protection after completing this step.

  1. Configure the project:

The Secure Boot can be enabled either by running the pio run -t menuconfig target and setting Security features -> Enable hardware Secure Boot option.

Note

For ESP32, Secure Boot v2 is available only for ESP32 ECO3 onwards. To view the Secure Boot v2 option the chip revision should be changed to revision v3.0 (ECO3). To change the chip revision, run the menuconfig target and set Minimum Supported ESP32 Revision to Rev 3.0 (ECO3) in Component Config -> Hardware Settings -> Chip Revision

or directly in the sdkconfig.defaults file:

# ESP32-specific settings
CONFIG_ESP32_REV_MIN_3=y

# Secure Boot settings
CONFIG_SECURE_BOOT=y
CONFIG_SECURE_BOOT_V2_ENABLED=y

Note

By default PlatformIO won’t automatically sign any built binaries, unless the CONFIG_SECURE_BOOT_BUILD_SIGNED_BINARIES option is set.

  1. Build, Sign and Upload the binaries:

The project can be built via the usual run command.

pio run

Signed binaries will be generated automatically if the CONFIG_SECURE_BOOT_BUILD_SIGNED_BINARIES option is enabled. Alternatively, they can be generated by running the sign target:

pio run -t sign

To upload the signed binaries run the usual upload target (if the CONFIG_SECURE_BOOT_BUILD_SIGNED_BINARIES option is enabled) or use the combination of the sign and upload targets:

pio run -t sign -t upload

Note

By default the bootloader binary is not uploaded when Secure Boot is enabled unless the SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT is enabled. As an alternative, there is a special target pio run -t sign -t upload-bootloader that can be used to upload only the signed bootloader binary.

  1. Secure the ROM download mode:

Warning

Please perform the following step at the very end. After this eFuse is burned, the espefuse tool can no longer be used to burn additional eFuses.

Burn the fuse that disables the UART ROM download mode

pio pkg exec --package "platformio/tool-esptoolpy" -- espefuse.py --port $PORT burn_efuse UART_DOWNLOAD_DIS

Note

It is recommended to store the Secure Boot key in a highly secure place. A physical or a cloud HSM may be used for secure storage of the Secure Boot private key.

NVS Encryption: Flash Encryption-Based Scheme

Warning

The instructions below are intended for ESP32 targets. For other variants open Secure Boot Programming Guide and select your target from the menu on the left.

Note

In this scheme, the keys required for NVS encryption are stored in yet another partition, which is protected using Flash Encryption. Therefore, enabling Flash Encryption becomes a prerequisite for NVS encryption here.

Note

An application requiring NVS encryption support (using the Flash Encryption-based scheme) needs to be compiled with a key-partition of the type data and subtype nvs_keys. This partition should be marked as encrypted and its size should be the minimum partition size (4 KB).

Note

NVS encryption is enabled by default when Flash Encryption is enabled. This is done because Wi-Fi driver stores credentials (like SSID and passphrase) in the default NVS partition. It is important to encrypt them as default choice if platform-level encryption is already enabled.

It’s recommended to read the official NVS Encryption Guide to understand the overall workflow before getting started. Here’s an adapted version of that page that uses PlatformIO packages to build, sign and upload binaries:

  1. Generate the NVS encryption key

The NVS Encryption key can be generated using the following command. This key is then flashed on the chip and protected with the help of Flash Encryption features

pio pkg exec --package "platformio/framework-espidf" -- components/nvs_flash/nvs_partition_generator/nvs_partition_gen.py generate-key --keyfile nvs_encr_key.bin

This command will generate the respective key in the keys folder.

  1. Generate an encrypted NVS partition

On this step we need to generate an encrypted NVS partition from a special CSV file. Please refer to Generate Encrypted NVS Partition and CSV File Format for more details.

pio pkg exec --package "platformio/framework-espidf" -- components/nvs_flash/nvs_partition_generator/nvs_partition_gen.py encrypt nvs_data.csv nvs_encr_partition.bin 0x121000 --inputkey keys/nvs_encr_key.bin
  • nvs_data.csv - a CSV file which contains the NVS data

  • 0x121000 is the NVS partition offset according to your partition table

  • keys/nvs_encr_key.bin is an encryption key generated on the previous step

  1. Configure the project

The NVS encryption using Flash Encryption can be enabled in your sdkconfig.defaults as follows:

CONFIG_NVS_ENCRYPTION=y
CONFIG_NVS_SEC_KEY_PROTECT_USING_FLASH_ENC=y
  1. Flash NVS partition and NVS encryption keys

Note

If Flash Encryption is enabled, the nvs_key partition need to be encrypted using Flash Encryption key before flashing.

pio pkg exec --package "platformio/tool-esptoolpy" -- espsecure.py encrypt_flash_data --keyfile my_flash_encryption_key.bin --address 0x120000
--output keys/nvs_encr_key-encrypted.bin keys/nvs_encr_key.bin
  • my_flash_encryption_key.bin - is your Flash Encryption Key

  • 0x120000 is the NVS Key partition offset according to your partition table

  • keys/nvs_encr_key.bin is an encryption key generated on the previous step

The final binaries can be uploaded via the esptool.py tool with corresponding offsets. You can change generic hardware parameters according to your target:

pio pkg exec --package "platformio/tool-esptoolpy" -- esptool.py --chip esp32 -p $PORT --before=default_reset --after=no_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 4MB 0x120000 keys/nvs_encr_key-encrypted.bin 0x121000 nvs_encr_partition-encrypted.bin --force
  • $PORT is the serial port of your target device

  • 0x120000 is the NVS Key partition offset according to your partition table

  • 0x121000 is the NVS partition offset according to your partition table

  • keys/nvs_encr_key.bin is an encryption key generated on the previous step

Limitations

At the moment several limitations are present:

  • No whitespace characters allowed in project paths. This limitation is imposed by the native ESP-IDF build system. This affects users that have a whitespace in their username or added a whitespace to the project name. As a workaround, it’s recommended to move core_dir to a folder without spaces. For example:

    [platformio]
    core_dir = C:/.platformio
    
    [env:esp32dev]
    platform = platformio/espressif32
    framework = espidf
    board = esp32dev
    
  • The src_filter option cannot be used. It’s done to preserve compatibility with existing ESP-IDF projects. List of source files is specified in the project CMakeLists.txt file.

Platforms

Name

Description

Espressif 32

ESP32 is a series of low-cost, low-power system on a chip microcontrollers with integrated Wi-Fi and Bluetooth. ESP32 integrates an antenna switch, RF balun, power amplifier, low-noise receive amplifier, filters, and power management modules.

Examples

Debugging

Debugging - “1-click” solution for debugging with a zero configuration.

Tools & Debug Probes

Supported debugging tools are listed in “Debug” column. For more detailed information, please scroll table by horizontal. You can switch between debugging Tools & Debug Probes using debug_tool option in “platformio.ini” (Project Configuration File).

Warning

You will need to install debug tool drivers depending on your system. Please click on compatible debug tool below for the further instructions.

On-Board Debug Tools

Boards listed below have on-board debug probe and ARE READY for debugging! You do not need to use/buy external debug probe.

Name

Platform

MCU

Frequency

Flash

RAM

Espressif ESP-WROVER-KIT

Espressif 32

ESP32

240MHz

4MB

320KB

Espressif ESP32-S2-Kaluga-1 Kit

Espressif 32

ESP32S2

240MHz

4MB

320KB

Espressif ESP32-S3-DevKitC-1-N8 (8 MB QD, No PSRAM)

Espressif 32

ESP32S3

240MHz

8MB

320KB

Espressif ESP32-S3-DevKitM-1

Espressif 32

ESP32S3

240MHz

8MB

320KB

Espressif ESP32-S3-USB-OTG

Espressif 32

ESP32S3

240MHz

8MB

320KB

Freenove ESP32-S3 WROOM N8R8 (8MB Flash / 8MB PSRAM)

Espressif 32

ESP32S3

240MHz

8MB

320KB

Lion:Bit S3 STEM Dev Board

Espressif 32

ESP32S3

240MHz

4MB

320KB

RYMCU ESP32-S3-DevKitC-1-N8R2 (8 MB QD, 2 MB PSRAM)

Espressif 32

ESP32S3

240MHz

8MB

320KB

External Debug Tools

Boards listed below are compatible with Debugging but DEPEND ON external debug probe. They ARE NOT READY for debugging. Please click on board name for the further details.

Name

Platform

MCU

Frequency

Flash

RAM

4D Systems GEN4-ESP32 16MB (ESP32S3-R8N16)

Espressif 32

ESP32S3

240MHz

16MB

320KB

AI Thinker ESP32-CAM

Espressif 32

ESP32

240MHz

4MB

320KB

AZ-Delivery ESP-32 Dev Kit C V4

Espressif 32

ESP32

240MHz

4MB

520KB

Adafruit ESP32 Feather

Espressif 32

ESP32

240MHz

4MB

320KB

Adafruit ESP32-S2 Feather Development Board

Espressif 32

ESP32S2

240MHz

4MB

320KB

Adafruit Feather ESP32 V2

Espressif 32

ESP32

240MHz

8MB

320KB

Adafruit Feather ESP32-S2

Espressif 32

ESP32S2

240MHz

4MB

320KB

Adafruit Feather ESP32-S2 Reverse TFT

Espressif 32

ESP32S2

240MHz

4MB

320KB

Adafruit Feather ESP32-S2 TFT

Espressif 32

ESP32S2

240MHz

4MB

320KB

Adafruit Feather ESP32-S3 2MB PSRAM

Espressif 32

ESP32S3

240MHz

4MB

320KB

Adafruit Feather ESP32-S3 No PSRAM

Espressif 32

ESP32S3

240MHz

8MB

320KB

Adafruit Feather ESP32-S3 Reverse TFT

Espressif 32

ESP32S3

240MHz

4MB

320KB

Adafruit Feather ESP32-S3 TFT

Espressif 32

ESP32S3

240MHz

4MB

320KB

Adafruit FunHouse

Espressif 32

ESP32S2

240MHz

4MB

320KB

Adafruit ItsyBitsy ESP32

Espressif 32

ESP32

240MHz

8MB

320KB

Adafruit MagTag 2.9

Espressif 32

ESP32S2

240MHz

4MB

320KB

Adafruit MatrixPortal ESP32-S3

Espressif 32

ESP32S3

240MHz

8MB

320KB

Adafruit Metro ESP32-S2

Espressif 32

ESP32S2

240MHz

4MB

320KB

Adafruit Metro ESP32-S3

Espressif 32

ESP32S3

240MHz

16MB

320KB

Adafruit QT Py ESP32

Espressif 32

ESP32

240MHz

8MB

320KB

Adafruit QT Py ESP32-C3

Espressif 32

ESP32C3

160MHz

4MB

320KB

Adafruit QT Py ESP32-S2

Espressif 32

ESP32S2

240MHz

4MB

320KB

Adafruit QT Py ESP32-S3 (4M Flash 2M PSRAM)

Espressif 32

ESP32S3

240MHz

4MB

320KB

Adafruit QT Py ESP32-S3 No PSRAM

Espressif 32

ESP32S3

240MHz

8MB

320KB

Adafruit Qualia ESP32-S3 RGB666

Espressif 32

ESP32S3

240MHz

16MB

320KB

Adafruit pyCamera S3

Espressif 32

ESP32S3

240MHz

4MB

320KB

Ai-Thinker ESP-C3-M1-I-Kit

Espressif 32

ESP32C3

160MHz

4MB

320KB

Ai-Thinker NodeMCU-32S2 (ESP-12K)

Espressif 32

ESP32S2

240MHz

4MB

320KB

AirM2M CORE ESP32C3

Espressif 32

ESP32C3

160MHz

4MB

320KB

Arduino Nano ESP32

Espressif 32

ESP32S3

240MHz

16MB

320KB

ArtronShop ATD1.47-S3

Espressif 32

ESP32S3

240MHz

8MB

320KB

ArtronShop IOXESP32

Espressif 32

ESP32

240MHz

4MB

320KB

ArtronShop IOXESP32PS

Espressif 32

ESP32

240MHz

4MB

320KB

Aventen S3 Sync

Espressif 32

ESP32S3

240MHz

16MB

320KB

BPI-Leaf-S3

Espressif 32

ESP32S3

240MHz

8MB

320KB

Blinker WiFiduino32S3

Espressif 32

ESP32S3

240MHz

8MB

320KB

Blinker WiFiduinoV2 (ESP32-C3)

Espressif 32

ESP32C3

160MHz

4MB

320KB

Connaxio’s Espoir

Espressif 32

ESP32

240MHz

4MB

320KB

Cytron Maker Feather AIoT S3

Espressif 32

ESP32S3

240MHz

8MB

320KB

D-duino-32

Espressif 32

ESP32

240MHz

4MB

320KB

DFRobot Beetle ESP32-C3

Espressif 32

ESP32C3

160MHz

4MB

320KB

DFRobot Firebeetle 2 ESP32-E

Espressif 32

ESP32

240MHz

4MB

320KB

DFRobot Firebeetle 2 ESP32-S3

Espressif 32

ESP32S3

240MHz

4MB

320KB

DFRobot Romeo ESP32-S3

Espressif 32

ESP32S3

240MHz

16MB

320KB

DOIT ESP32 DEVKIT V1

Espressif 32

ESP32

240MHz

4MB

320KB

DOIT ESPduino32

Espressif 32

ESP32

240MHz

4MB

320KB

Deneyap Kart

Espressif 32

ESP32

240MHz

4MB

320KB

Deneyap Kart 1A

Espressif 32

ESP32

240MHz

4MB

320KB

Deneyap Kart 1A v2

Espressif 32

ESP32S3

240MHz

4MB

320KB

Deneyap Kart G

Espressif 32

ESP32C3

160MHz

4MB

320KB

Deneyap Mini

Espressif 32

ESP32S2

240MHz

4MB

320KB

Deneyap Mini v2

Espressif 32

ESP32S2

240MHz

4MB

320KB

Department of Alchemy MiniMain ESP32-S2

Espressif 32

ESP32S2

240MHz

4MB

320KB

Dongsen Tech Pocket 32

Espressif 32

ESP32

240MHz

4MB

320KB

ESP32 FM DevKit

Espressif 32

ESP32

240MHz

4MB

320KB

ESP32 Pico Kit

Espressif 32

ESP32

240MHz

4MB

320KB

ESP32-S3 PowerFeather

Espressif 32

ESP32S3

240MHz

8MB

320KB

ESP32S3 CAM LCD

Espressif 32

ESP32S3

240MHz

8MB

320KB

ESP32vn IoT Uno

Espressif 32

ESP32

240MHz

4MB

320KB

ESPectro32

Espressif 32

ESP32

240MHz

4MB

320KB

ESPino32

Espressif 32

ESP32

240MHz

4MB

320KB

EspinalLab ATMegaZero ESP32-S2

Espressif 32

ESP32S2

240MHz

16MB

320KB

Espressif ESP32 Dev Module

Espressif 32

ESP32

240MHz

4MB

320KB

Espressif ESP32-C3-DevKitC-02

Espressif 32

ESP32C3

160MHz

4MB

320KB

Espressif ESP32-C3-DevKitM-1

Espressif 32

ESP32C3

160MHz

4MB

320KB

Espressif ESP32-C6-DevKitM-1

Espressif 32

ESP32C6

160MHz

4MB

320KB

Espressif ESP32-S2-Saola-1

Espressif 32

ESP32S2

240MHz

4MB

320KB

Espressif ESP32-S3-Box

Espressif 32

ESP32S3

240MHz

16MB

320KB

FireBeetle-ESP32

Espressif 32

ESP32

240MHz

16MB

520KB

Franzininho WiFi

Espressif 32

ESP32S2

240MHz

4MB

320KB

Franzininho WiFi Board

Espressif 32

ESP32S2

240MHz

4MB

320KB

Franzininho WiFi MSC

Espressif 32

ESP32S2

240MHz

4MB

320KB

Freenove ESP32-Wrover

Espressif 32

ESP32

240MHz

4MB

320KB

Frog Board ESP32

Espressif 32

ESP32

240MHz

4MB

320KB

HONEYLemon

Espressif 32

ESP32

240MHz

4MB

320KB

Heltec WiFi Kit 32 (V3)

Espressif 32

ESP32S3

240MHz

8MB

320KB

Heltec WiFi LoRa 32

Espressif 32

ESP32

240MHz

4MB

320KB

Heltec WiFi LoRa 32 (V2)

Espressif 32

ESP32

240MHz

8MB

320KB

Heltec WiFi LoRa 32 (V3)

Espressif 32

ESP32S3

240MHz

8MB

320KB

Heltec Wireless Stick

Espressif 32

ESP32

240MHz

8MB

320KB

Hornbill ESP32 Dev

Espressif 32

ESP32

240MHz

4MB

320KB

Hornbill ESP32 Minima

Espressif 32

ESP32

240MHz

4MB

320KB

Kinetic Dynamics Nebula S3

Espressif 32

ESP32S3

240MHz

4MB

320KB

LOGISENSES Senses Weizen

Espressif 32

ESP32

240MHz

4MB

320KB

Lilka v2

Espressif 32

ESP32S3

240MHz

16MB

320KB

LilyGo T-Display-S3

Espressif 32

ESP32S3

240MHz

16MB

320KB

LilyGo T3-S3

Espressif 32

ESP32S3

240MHz

4MB

320KB

Lion:Bit Dev Board

Espressif 32

ESP32

240MHz

4MB

320KB

M5Stack AtomS3

Espressif 32

ESP32S3

240MHz

8MB

320KB

M5Stack CoreS3

Espressif 32

ESP32S3

240MHz

16MB

320KB

M5Stack StampS3

Espressif 32

ESP32S3

240MHz

8MB

320KB

MH ET LIVE ESP32DevKIT

Espressif 32

ESP32

240MHz

4MB

320KB

MH ET LIVE ESP32MiniKit

Espressif 32

ESP32

240MHz

4MB

320KB

MakerAsia KB32-FT

Espressif 32

ESP32

240MHz

4MB

320KB

MotorGo Mini 1 (ESP32-S3)

Espressif 32

ESP32S3

240MHz

4MB

320KB

Munich Labs RedPill ESP32-S3

Espressif 32

ESP32S3

240MHz

8MB

320KB

Namino Arancio

Espressif 32

ESP32S3

240MHz

4MB

320KB

Namino Rosso

Espressif 32

ESP32S3

240MHz

4MB

320KB

Node32s

Espressif 32

ESP32

240MHz

4MB

320KB

NodeMCU-32S

Espressif 32

ESP32

240MHz

4MB

320KB

OLIMEX ESP32-DevKit-LiPo

Espressif 32

ESP32

240MHz

4MB

320KB

OLIMEX ESP32-EVB

Espressif 32

ESP32

240MHz

4MB

320KB

OLIMEX ESP32-GATEWAY

Espressif 32

ESP32

240MHz

4MB

320KB

Pycom LoPy

Espressif 32

ESP32

240MHz

4MB

320KB

Pycom LoPy4

Espressif 32

ESP32

240MHz

4MB

1.25MB

Pycom WiPy3

Espressif 32

ESP32

240MHz

4MB

1.25MB

RYMCU ESP32-C3-DevKitM-1

Espressif 32

ESP32C3

160MHz

4MB

320KB

RYMCU ESP32-DevKitC

Espressif 32

ESP32

240MHz

4MB

320KB

SG-O AirMon

Espressif 32

ESP32

240MHz

4MB

320KB

SQFMI Watchy v2.0

Espressif 32

ESP32

240MHz

4MB

320KB

Seeed Studio Edgebox-ESP-100

Espressif 32

ESP32S3

240MHz

4MB

320KB

Seeed Studio XIAO ESP32C3

Espressif 32

ESP32C3

160MHz

4MB

320KB

Seeed Studio XIAO ESP32S3

Espressif 32

ESP32S3

240MHz

8MB

320KB

Silicognition wESP32

Espressif 32

ESP32

240MHz

4MB

320KB

Smart Bee Data Logger

Espressif 32

ESP32S3

240MHz

8MB

320KB

Smart Bee Motion

Espressif 32

ESP32S2

240MHz

4MB

320KB

Smart Bee Motion Mini

Espressif 32

ESP32C3

160MHz

4MB

320KB

Smart Bee Motion S3

Espressif 32

ESP32S3

240MHz

8MB

320KB

Smart Bee S3

Espressif 32

ESP32S3

240MHz

8MB

320KB

SparkFun ESP32 IoT RedBoard

Espressif 32

ESP32

240MHz

4MB

320KB

SparkFun ESP32 Thing

Espressif 32

ESP32

240MHz

4MB

320KB

SparkFun ESP32 Thing Plus

Espressif 32

ESP32

240MHz

16MB

320KB

SparkFun ESP32 Thing Plus C

Espressif 32

ESP32

240MHz

16MB

320KB

SparkFun ESP32-S2 Thing Plus

Espressif 32

ESP32S2

240MHz

4MB

320KB

SparkFun LoRa Gateway 1-Channel

Espressif 32

ESP32

240MHz

4MB

320KB

TAMC DPU ESP32

Espressif 32

ESP32

240MHz

8MB

320KB

TAMC Termod S3

Espressif 32

ESP32S3

240MHz

8MB

320KB

TTGO LoRa32-OLED V1

Espressif 32

ESP32

240MHz

4MB

320KB

TTGO LoRa32-OLED V2

Espressif 32

ESP32

240MHz

4MB

320KB

TTGO LoRa32-OLED v2.1.6

Espressif 32

ESP32

240MHz

4MB

320KB

TTGO T-Beam

Espressif 32

ESP32

240MHz

4MB

1.25MB

TTGO T-OI PLUS RISC-V ESP32-C3

Espressif 32

ESP32C3

160MHz

4MB

320KB

TTGO T1

Espressif 32

ESP32

240MHz

4MB

320KB

TTGO T7 V1.4 Mini32

Espressif 32

ESP32

240MHz

4MB

1.25MB

Trueverit ESP32 Universal IoT Driver

Espressif 32

ESP32

240MHz

4MB

320KB

Trueverit ESP32 Universal IoT Driver MK II

Espressif 32

ESP32

240MHz

4MB

320KB

Trueverit ESP32 Universal IoT Driver MK III

Espressif 32

ESP32

240MHz

4MB

320KB

Unexpected Maker FeatherS2

Espressif 32

ESP32S2

240MHz

16MB

320KB

Unexpected Maker FeatherS2 Neo

Espressif 32

ESP32S2

240MHz

4MB

320KB

Unexpected Maker FeatherS3

Espressif 32

ESP32S3

240MHz

16MB

320KB

Unexpected Maker NanoS3

Espressif 32

ESP32S3

240MHz

8MB

320KB

Unexpected Maker PROS3

Espressif 32

ESP32S3

240MHz

16MB

320KB

Unexpected Maker RMP

Espressif 32

ESP32S2

240MHz

4MB

320KB

Unexpected Maker TinyS2

Espressif 32

ESP32S2

240MHz

4MB

320KB

Unexpected Maker TinyS3

Espressif 32

ESP32S3

240MHz

8MB

320KB

Valetron Systems VALTRACK-V4MVF

Espressif 32

ESP32C3

160MHz

4MB

320KB

Valetron Systems VALTRACK-V4VTS

Espressif 32

ESP32C3

160MHz

4MB

320KB

VintLabs ESP32 Devkit

Espressif 32

ESP32

240MHz

4MB

320KB

WEMOS D1 MINI ESP32

Espressif 32

ESP32

240MHz

4MB

320KB

WEMOS D1 R32

Espressif 32

ESP32

240MHz

4MB

320KB

WEMOS LOLIN C3 Mini

Espressif 32

ESP32C3

160MHz

4MB

320KB

WEMOS LOLIN D32

Espressif 32

ESP32

240MHz

4MB

320KB

WEMOS LOLIN D32 PRO

Espressif 32

ESP32

240MHz

4MB

320KB

WEMOS LOLIN S2 Mini

Espressif 32

ESP32S2

240MHz

4MB

320KB

WEMOS LOLIN S2 PICO

Espressif 32

ESP32S2

240MHz

4MB

320KB

WEMOS LOLIN S3

Espressif 32

ESP32S3

240MHz

16MB

320KB

WEMOS LOLIN S3 Mini

Espressif 32

ESP32S3

240MHz

4MB

320KB

WEMOS LOLIN S3 PRO

Espressif 32

ESP32S3

240MHz

16MB

320KB

WEMOS LOLIN32

Espressif 32

ESP32

240MHz

4MB

320KB

WEMOS LOLIN32 Lite

Espressif 32

ESP32

240MHz

4MB

320KB

WeAct Studio ESP32C3CoreBoard

Espressif 32

ESP32C3

160MHz

384KB

400KB

WeMos WiFi and Bluetooth Battery

Espressif 32

ESP32

240MHz

4MB

320KB

Wireless-Tag WT32-ETH01 Ethernet Module

Espressif 32

ESP32

240MHz

4MB

320KB

XinaBox CW02

Espressif 32

ESP32

240MHz

4MB

320KB

microS2

Espressif 32

ESP32S2

240MHz

16MB

320KB

oddWires IoT-Bus Io

Espressif 32

ESP32

240MHz

4MB

320KB

oddWires IoT-Bus Proteus

Espressif 32

ESP32

240MHz

4MB

320KB

senseBox MCU-S2 ESP32-S2

Espressif 32

ESP32S2

240MHz

4MB

320KB

uPesy ESP32 Wroom DevKit

Espressif 32

ESP32

240MHz

4MB

320KB

uPesy ESP32 Wrover DevKit

Espressif 32

ESP32

240MHz

4MB

320KB

unPhone 7

Espressif 32

ESP32

240MHz

4MB

320KB

unPhone 8

Espressif 32

ESP32S3

240MHz

7.94MB

2.31MB

unPhone 9

Espressif 32

ESP32S3

240MHz

7.94MB

8.31MB

Boards

Note

  • You can list pre-configured boards by pio boards command

  • For more detailed board information please scroll the tables below by horizontally.

4D Systems

Name

Platform

Debug

MCU

Frequency

Flash

RAM

4D Systems GEN4-ESP32 16MB (ESP32S3-R8N16)

Espressif 32

External

ESP32S3

240MHz

16MB

320KB

AI Thinker

Name

Platform

Debug

MCU

Frequency

Flash

RAM

AI Thinker ESP32-CAM

Espressif 32

External

ESP32

240MHz

4MB

320KB

AZ-Delivery

Name

Platform

Debug

MCU

Frequency

Flash

RAM

AZ-Delivery ESP-32 Dev Kit C V4

Espressif 32

External

ESP32

240MHz

4MB

520KB

Adafruit

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Adafruit ESP32 Feather

Espressif 32

External

ESP32

240MHz

4MB

320KB

Adafruit ESP32-S2 Feather Development Board

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

Adafruit Feather ESP32 V2

Espressif 32

External

ESP32

240MHz

8MB

320KB

Adafruit Feather ESP32-S2

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

Adafruit Feather ESP32-S2 Reverse TFT

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

Adafruit Feather ESP32-S2 TFT

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

Adafruit Feather ESP32-S3 2MB PSRAM

Espressif 32

External

ESP32S3

240MHz

4MB

320KB

Adafruit Feather ESP32-S3 No PSRAM

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

Adafruit Feather ESP32-S3 Reverse TFT

Espressif 32

External

ESP32S3

240MHz

4MB

320KB

Adafruit Feather ESP32-S3 TFT

Espressif 32

External

ESP32S3

240MHz

4MB

320KB

Adafruit FunHouse

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

Adafruit ItsyBitsy ESP32

Espressif 32

External

ESP32

240MHz

8MB

320KB

Adafruit MagTag 2.9

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

Adafruit MatrixPortal ESP32-S3

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

Adafruit Metro ESP32-S2

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

Adafruit Metro ESP32-S3

Espressif 32

External

ESP32S3

240MHz

16MB

320KB

Adafruit QT Py ESP32

Espressif 32

External

ESP32

240MHz

8MB

320KB

Adafruit QT Py ESP32-C3

Espressif 32

External

ESP32C3

160MHz

4MB

320KB

Adafruit QT Py ESP32-S2

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

Adafruit QT Py ESP32-S3 (4M Flash 2M PSRAM)

Espressif 32

External

ESP32S3

240MHz

4MB

320KB

Adafruit QT Py ESP32-S3 No PSRAM

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

Adafruit Qualia ESP32-S3 RGB666

Espressif 32

External

ESP32S3

240MHz

16MB

320KB

Adafruit pyCamera S3

Espressif 32

External

ESP32S3

240MHz

4MB

320KB

Ai-Thinker

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Ai-Thinker ESP-C3-M1-I-Kit

Espressif 32

External

ESP32C3

160MHz

4MB

320KB

Ai-Thinker NodeMCU-32S2 (ESP-12K)

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

AirM2M

Name

Platform

Debug

MCU

Frequency

Flash

RAM

AirM2M CORE ESP32C3

Espressif 32

External

ESP32C3

160MHz

4MB

320KB

Aiyarafun

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Node32s

Espressif 32

External

ESP32

240MHz

4MB

320KB

Anderson & friends

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Lilka v2

Espressif 32

External

ESP32S3

240MHz

16MB

320KB

April Brother

Name

Platform

Debug

MCU

Frequency

Flash

RAM

April Brother ESPea32

Espressif 32

No

ESP32

240MHz

4MB

320KB

Arduino

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Arduino Nano ESP32

Espressif 32

External

ESP32S3

240MHz

16MB

320KB

ArtronShop

Name

Platform

Debug

MCU

Frequency

Flash

RAM

ArtronShop ATD1.47-S3

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

ArtronShop IOXESP32

Espressif 32

External

ESP32

240MHz

4MB

320KB

ArtronShop IOXESP32PS

Espressif 32

External

ESP32

240MHz

4MB

320KB

Aventen

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Aventen S3 Sync

Espressif 32

External

ESP32S3

240MHz

16MB

320KB

BPI Tech

Name

Platform

Debug

MCU

Frequency

Flash

RAM

BPI-Bit

Espressif 32

No

ESP32

160MHz

4MB

320KB

BPI-Leaf-S3

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

Blinker

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Blinker WiFiduino32

Espressif 32

No

ESP32

240MHz

4MB

320KB

Blinker WiFiduino32S3

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

Blinker WiFiduinoV2 (ESP32-C3)

Espressif 32

External

ESP32C3

160MHz

4MB

320KB

CNRS

Name

Platform

Debug

MCU

Frequency

Flash

RAM

CNRS AW2ETH

Espressif 32

No

ESP32

240MHz

4MB

320KB

Connaxio

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Connaxio’s Espoir

Espressif 32

External

ESP32

240MHz

4MB

320KB

Cytron Technologies

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Cytron Maker Feather AIoT S3

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

DFRobot

Name

Platform

Debug

MCU

Frequency

Flash

RAM

DFRobot Beetle ESP32-C3

Espressif 32

External

ESP32C3

160MHz

4MB

320KB

DFRobot Firebeetle 2 ESP32-E

Espressif 32

External

ESP32

240MHz

4MB

320KB

DFRobot Firebeetle 2 ESP32-S3

Espressif 32

External

ESP32S3

240MHz

4MB

320KB

DFRobot Romeo ESP32-S3

Espressif 32

External

ESP32S3

240MHz

16MB

320KB

FireBeetle-ESP32

Espressif 32

External

ESP32

240MHz

16MB

520KB

DOIT

Name

Platform

Debug

MCU

Frequency

Flash

RAM

DOIT ESP32 DEVKIT V1

Espressif 32

External

ESP32

240MHz

4MB

320KB

DOIT ESPduino32

Espressif 32

External

ESP32

240MHz

4MB

320KB

DSTIKE

Name

Platform

Debug

MCU

Frequency

Flash

RAM

D-duino-32

Espressif 32

External

ESP32

240MHz

4MB

320KB

Denky

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Denky D4 (PICO-V3-02)

Espressif 32

No

ESP32

240MHz

8MB

320KB

Denky32 (WROOM32)

Espressif 32

No

ESP32

240MHz

4MB

320KB

Department of Alchemy

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Department of Alchemy MiniMain ESP32-S2

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

Dongsen Technology

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Dongsen Tech Pocket 32

Espressif 32

External

ESP32

240MHz

4MB

320KB

DycodeX

Name

Platform

Debug

MCU

Frequency

Flash

RAM

ESPectro32

Espressif 32

External

ESP32

240MHz

4MB

320KB

ESP32vn

Name

Platform

Debug

MCU

Frequency

Flash

RAM

ESP32vn IoT Uno

Espressif 32

External

ESP32

240MHz

4MB

320KB

ETBoard

Name

Platform

Debug

MCU

Frequency

Flash

RAM

ETBoard

Espressif 32

No

ESP32

240MHz

4MB

320KB

Electronic SweetPeas

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Electronic SweetPeas ESP320

Espressif 32

No

ESP32

240MHz

4MB

320KB

EspinalLab

Name

Platform

Debug

MCU

Frequency

Flash

RAM

EspinalLab ATMegaZero ESP32-S2

Espressif 32

External

ESP32S2

240MHz

16MB

320KB

Espressif

Name

Platform

Debug

MCU

Frequency

Flash

RAM

ESP32 Pico Kit

Espressif 32

External

ESP32

240MHz

4MB

320KB

ESP32S3 CAM LCD

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

Espressif ESP-WROVER-KIT

Espressif 32

On-board

ESP32

240MHz

4MB

320KB

Espressif ESP32 Dev Module

Espressif 32

External

ESP32

240MHz

4MB

320KB

Espressif ESP32-C3-DevKitC-02

Espressif 32

External

ESP32C3

160MHz

4MB

320KB

Espressif ESP32-C3-DevKitM-1

Espressif 32

External

ESP32C3

160MHz

4MB

320KB

Espressif ESP32-C6-DevKitC-1

Espressif 32

No

ESP32C6

160MHz

8MB

320KB

Espressif ESP32-C6-DevKitM-1

Espressif 32

External

ESP32C6

160MHz

4MB

320KB

Espressif ESP32-S2-Kaluga-1 Kit

Espressif 32

On-board

ESP32S2

240MHz

4MB

320KB

Espressif ESP32-S2-Saola-1

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

Espressif ESP32-S3-Box

Espressif 32

External

ESP32S3

240MHz

16MB

320KB

Espressif ESP32-S3-DevKitC-1-N8 (8 MB QD, No PSRAM)

Espressif 32

On-board

ESP32S3

240MHz

8MB

320KB

Espressif ESP32-S3-DevKitM-1

Espressif 32

On-board

ESP32S3

240MHz

8MB

320KB

Espressif ESP32-S3-USB-OTG

Espressif 32

On-board

ESP32S3

240MHz

8MB

320KB

Espressif Systems

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Espressif ESP32-PICO-DevKitM-2

Espressif 32

No

ESP32

240MHz

8MB

320KB

Fishino

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Fishino Piranha ESP-32

Espressif 32

No

ESP32

240MHz

4MB

320KB

Franzininho

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Franzininho WiFi

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

Franzininho WiFi Board

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

Franzininho WiFi MSC

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

Fred

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Frog Board ESP32

Espressif 32

External

ESP32

240MHz

4MB

320KB

Freenove

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Freenove ESP32-S3 WROOM N8R8 (8MB Flash / 8MB PSRAM)

Espressif 32

On-board

ESP32S3

240MHz

8MB

320KB

Freenove ESP32-Wrover

Espressif 32

External

ESP32

240MHz

4MB

320KB

HONEYLemon

Name

Platform

Debug

MCU

Frequency

Flash

RAM

HONEYLemon

Espressif 32

External

ESP32

240MHz

4MB

320KB

Hardkernel

Name

Platform

Debug

MCU

Frequency

Flash

RAM

ODROID-GO

Espressif 32

No

ESP32

240MHz

16MB

320KB

Heltec

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Heltec WiFi Kit 32 (V3)

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

Heltec WiFi LoRa 32 (V3)

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

Heltec Automation

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Heltec WiFi Kit 32

Espressif 32

No

ESP32

240MHz

4MB

320KB

Heltec WiFi Kit 32 (V2)

Espressif 32

No

ESP32

240MHz

8MB

320KB

Heltec WiFi LoRa 32

Espressif 32

External

ESP32

240MHz

4MB

320KB

Heltec WiFi LoRa 32 (V2)

Espressif 32

External

ESP32

240MHz

8MB

320KB

Heltec Wireless Stick

Espressif 32

External

ESP32

240MHz

8MB

320KB

Heltec Wireless Stick Lite

Espressif 32

No

ESP32

240MHz

4MB

320KB

Hornbill

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Hornbill ESP32 Dev

Espressif 32

External

ESP32

240MHz

4MB

320KB

Hornbill ESP32 Minima

Espressif 32

External

ESP32

240MHz

4MB

320KB

INEX

Name

Platform

Debug

MCU

Frequency

Flash

RAM

INEX OpenKB

Espressif 32

No

ESP32

240MHz

4MB

320KB

Imbrios

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Imbrios LogSens V1P1

Espressif 32

No

ESP32

240MHz

4MB

320KB

IntoRobot

Name

Platform

Debug

MCU

Frequency

Flash

RAM

IntoRobot Fig

Espressif 32

No

ESP32

240MHz

4MB

320KB

KITS

Name

Platform

Debug

MCU

Frequency

Flash

RAM

KITS ESP32 EDU

Espressif 32

No

ESP32

240MHz

4MB

320KB

Kinetic Dynamics

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Kinetic Dynamics Nebula S3

Espressif 32

External

ESP32S3

240MHz

4MB

320KB

LOGISENSES

Name

Platform

Debug

MCU

Frequency

Flash

RAM

LOGISENSES Senses Weizen

Espressif 32

External

ESP32

240MHz

4MB

320KB

Labplus

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Labplus mPython

Espressif 32

No

ESP32

240MHz

4MB

320KB

LilyGo

Name

Platform

Debug

MCU

Frequency

Flash

RAM

LilyGo T-Display

Espressif 32

No

ESP32

240MHz

4MB

320KB

LilyGo T-Display-S3

Espressif 32

External

ESP32S3

240MHz

16MB

320KB

LilyGo T3-S3

Espressif 32

External

ESP32S3

240MHz

4MB

320KB

Lion:Bit

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Lion:Bit Dev Board

Espressif 32

External

ESP32

240MHz

4MB

320KB

Lion:Bit S3 STEM Dev Board

Espressif 32

On-board

ESP32S3

240MHz

4MB

320KB

M5Stack

Name

Platform

Debug

MCU

Frequency

Flash

RAM

M5Stack AtomS3

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

M5Stack Core ESP32

Espressif 32

No

ESP32

240MHz

4MB

320KB

M5Stack Core ESP32 16M

Espressif 32

No

ESP32

240MHz

16MB

520KB

M5Stack Core2

Espressif 32

No

ESP32

240MHz

16MB

4.31MB

M5Stack CoreS3

Espressif 32

External

ESP32S3

240MHz

16MB

320KB

M5Stack FIRE

Espressif 32

No

ESP32

240MHz

16MB

4.31MB

M5Stack GREY ESP32

Espressif 32

No

ESP32

240MHz

16MB

520KB

M5Stack StampS3

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

M5Stack Station

Espressif 32

No

ESP32

240MHz

16MB

4.31MB

M5Stack Timer CAM

Espressif 32

No

ESP32

240MHz

4MB

320KB

M5Stack-ATOM

Espressif 32

No

ESP32

240MHz

4MB

320KB

M5Stack-Core Ink

Espressif 32

No

ESP32

240MHz

4MB

320KB

M5Stamp-Pico

Espressif 32

No

ESP32

240MHz

4MB

320KB

M5Stick-C

Espressif 32

No

ESP32

240MHz

4MB

320KB

MECT SRL

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Namino Arancio

Espressif 32

External

ESP32S3

240MHz

4MB

320KB

Namino Rosso

Espressif 32

External

ESP32S3

240MHz

4MB

320KB

MGBOT

Name

Platform

Debug

MCU

Frequency

Flash

RAM

MGBOT IOTIK 32A

Espressif 32

No

ESP32

240MHz

4MB

320KB

MGBOT IOTIK 32B

Espressif 32

No

ESP32

240MHz

4MB

320KB

MH-ET Live

Name

Platform

Debug

MCU

Frequency

Flash

RAM

MH ET LIVE ESP32DevKIT

Espressif 32

External

ESP32

240MHz

4MB

320KB

MH ET LIVE ESP32MiniKit

Espressif 32

External

ESP32

240MHz

4MB

320KB

Magicblocks.io

Name

Platform

Debug

MCU

Frequency

Flash

RAM

MagicBit

Espressif 32

No

ESP32

240MHz

4MB

320KB

MakerAsia

Name

Platform

Debug

MCU

Frequency

Flash

RAM

MakerAsia KB32-FT

Espressif 32

External

ESP32

240MHz

4MB

320KB

MakerAsia Nano32

Espressif 32

No

ESP32

240MHz

4MB

320KB

Microduino

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Microduino Core ESP32

Espressif 32

No

ESP32

240MHz

4MB

320KB

MotorGo

Name

Platform

Debug

MCU

Frequency

Flash

RAM

MotorGo Mini 1 (ESP32-S3)

Espressif 32

External

ESP32S3

240MHz

4MB

320KB

Munich Labs

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Munich Labs RedPill ESP32-S3

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

NodeMCU

Name

Platform

Debug

MCU

Frequency

Flash

RAM

NodeMCU-32S

Espressif 32

External

ESP32

240MHz

4MB

320KB

Noduino

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Noduino Quantum

Espressif 32

No

ESP32

240MHz

16MB

320KB

OLIMEX

Name

Platform

Debug

MCU

Frequency

Flash

RAM

OLIMEX ESP32-DevKit-LiPo

Espressif 32

External

ESP32

240MHz

4MB

320KB

OLIMEX ESP32-EVB

Espressif 32

External

ESP32

240MHz

4MB

320KB

OLIMEX ESP32-GATEWAY

Espressif 32

External

ESP32

240MHz

4MB

320KB

OLIMEX ESP32-PRO

Espressif 32

No

ESP32

240MHz

4MB

320KB

OLIMEX ESP32-PoE

Espressif 32

No

ESP32

240MHz

4MB

320KB

OLIMEX ESP32-PoE-ISO

Espressif 32

No

ESP32

240MHz

4MB

320KB

OROCA

Name

Platform

Debug

MCU

Frequency

Flash

RAM

OROCA EduBot

Espressif 32

No

ESP32

240MHz

4MB

320KB

Onehorse

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Onehorse ESP32 Dev Module

Espressif 32

No

ESP32

240MHz

4MB

320KB

PowerFeather

Name

Platform

Debug

MCU

Frequency

Flash

RAM

ESP32-S3 PowerFeather

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

ProtoCentral

Name

Platform

Debug

MCU

Frequency

Flash

RAM

ProtoCentral HealthyPi 4

Espressif 32

No

ESP32

240MHz

4MB

320KB

Pycom Ltd.

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Pycom GPy

Espressif 32

No

ESP32

240MHz

4MB

320KB

Pycom LoPy

Espressif 32

External

ESP32

240MHz

4MB

320KB

Pycom LoPy4

Espressif 32

External

ESP32

240MHz

4MB

1.25MB

Pycom WiPy3

Espressif 32

External

ESP32

240MHz

4MB

1.25MB

Qmobot LLP

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Qchip

Espressif 32

No

ESP32

240MHz

4MB

320KB

RYMCU

Name

Platform

Debug

MCU

Frequency

Flash

RAM

RYMCU ESP32-C3-DevKitM-1

Espressif 32

External

ESP32C3

160MHz

4MB

320KB

RYMCU ESP32-DevKitC

Espressif 32

External

ESP32

240MHz

4MB

320KB

RYMCU ESP32-S3-DevKitC-1-N8R2 (8 MB QD, 2 MB PSRAM)

Espressif 32

On-board

ESP32S3

240MHz

8MB

320KB

RoboHeart

Name

Platform

Debug

MCU

Frequency

Flash

RAM

RoboHeart Hercules

Espressif 32

No

ESP32

240MHz

4MB

320KB

S.ODI

Name

Platform

Debug

MCU

Frequency

Flash

RAM

S.ODI Ultra v1

Espressif 32

No

ESP32

240MHz

4MB

320KB

SG-O

Name

Platform

Debug

MCU

Frequency

Flash

RAM

SG-O AirMon

Espressif 32

External

ESP32

240MHz

4MB

320KB

SQFMI

Name

Platform

Debug

MCU

Frequency

Flash

RAM

SQFMI Watchy v2.0

Espressif 32

External

ESP32

240MHz

4MB

320KB

Seeed Studio

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Seeed Studio Edgebox-ESP-100

Espressif 32

External

ESP32S3

240MHz

4MB

320KB

Seeed Studio XIAO ESP32C3

Espressif 32

External

ESP32C3

160MHz

4MB

320KB

Seeed Studio XIAO ESP32S3

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

Silicognition

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Silicognition wESP32

Espressif 32

External

ESP32

240MHz

4MB

320KB

Smart Bee

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Smart Bee Data Logger

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

Smart Bee Motion

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

Smart Bee Motion Mini

Espressif 32

External

ESP32C3

160MHz

4MB

320KB

Smart Bee Motion S3

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

Smart Bee S3

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

SparkFun

Name

Platform

Debug

MCU

Frequency

Flash

RAM

SparkFun ESP32 IoT RedBoard

Espressif 32

External

ESP32

240MHz

4MB

320KB

SparkFun ESP32 MicroMod

Espressif 32

No

ESP32

240MHz

4MB

320KB

SparkFun ESP32 Thing Plus C

Espressif 32

External

ESP32

240MHz

16MB

320KB

SparkFun ESP32-S2 Thing Plus

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

SparkFun LoRa Gateway 1-Channel

Espressif 32

External

ESP32

240MHz

4MB

320KB

SparkFun Electronics

Name

Platform

Debug

MCU

Frequency

Flash

RAM

SparkFun ESP32 Thing

Espressif 32

External

ESP32

240MHz

4MB

320KB

SparkFun ESP32 Thing Plus

Espressif 32

External

ESP32

240MHz

16MB

320KB

T3 Foundation

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Deneyap Kart

Espressif 32

External

ESP32

240MHz

4MB

320KB

Deneyap Kart 1A

Espressif 32

External

ESP32

240MHz

4MB

320KB

Deneyap Kart 1A v2

Espressif 32

External

ESP32S3

240MHz

4MB

320KB

Deneyap Kart G

Espressif 32

External

ESP32C3

160MHz

4MB

320KB

Deneyap Mini

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

Deneyap Mini v2

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

TAMC

Name

Platform

Debug

MCU

Frequency

Flash

RAM

TAMC DPU ESP32

Espressif 32

External

ESP32

240MHz

8MB

320KB

TAMC Termod S3

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

TTGO

Name

Platform

Debug

MCU

Frequency

Flash

RAM

TTGO LoRa32-OLED V1

Espressif 32

External

ESP32

240MHz

4MB

320KB

TTGO LoRa32-OLED V2

Espressif 32

External

ESP32

240MHz

4MB

320KB

TTGO LoRa32-OLED v2.1.6

Espressif 32

External

ESP32

240MHz

4MB

320KB

TTGO T-Beam

Espressif 32

External

ESP32

240MHz

4MB

1.25MB

TTGO T-OI PLUS RISC-V ESP32-C3

Espressif 32

External

ESP32C3

160MHz

4MB

320KB

TTGO T-Watch

Espressif 32

No

ESP32

240MHz

16MB

320KB

TTGO T1

Espressif 32

External

ESP32

240MHz

4MB

320KB

TTGO T7 V1.3 Mini32

Espressif 32

No

ESP32

240MHz

4MB

1.25MB

TTGO T7 V1.4 Mini32

Espressif 32

External

ESP32

240MHz

4MB

1.25MB

ThaiEasyElec

Name

Platform

Debug

MCU

Frequency

Flash

RAM

ESPino32

Espressif 32

External

ESP32

240MHz

4MB

320KB

Trueverit

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Trueverit ESP32 Universal IoT Driver

Espressif 32

External

ESP32

240MHz

4MB

320KB

Trueverit ESP32 Universal IoT Driver MK II

Espressif 32

External

ESP32

240MHz

4MB

320KB

Trueverit ESP32 Universal IoT Driver MK III

Espressif 32

External

ESP32

240MHz

4MB

320KB

Turta

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Turta IoT Node

Espressif 32

No

ESP32

240MHz

4MB

320KB

Unexpected Maker

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Unexpected Maker FeatherS2

Espressif 32

External

ESP32S2

240MHz

16MB

320KB

Unexpected Maker FeatherS2 Neo

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

Unexpected Maker FeatherS3

Espressif 32

External

ESP32S3

240MHz

16MB

320KB

Unexpected Maker NanoS3

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

Unexpected Maker PROS3

Espressif 32

External

ESP32S3

240MHz

16MB

320KB

Unexpected Maker RMP

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

Unexpected Maker TinyPICO

Espressif 32

No

ESP32

240MHz

4MB

320KB

Unexpected Maker TinyS2

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

Unexpected Maker TinyS3

Espressif 32

External

ESP32S3

240MHz

8MB

320KB

University of Sheffield

Name

Platform

Debug

MCU

Frequency

Flash

RAM

unPhone 7

Espressif 32

External

ESP32

240MHz

4MB

320KB

unPhone 8

Espressif 32

External

ESP32S3

240MHz

7.94MB

2.31MB

unPhone 9

Espressif 32

External

ESP32S3

240MHz

7.94MB

8.31MB

Unknown

Name

Platform

Debug

MCU

Frequency

Flash

RAM

ESP32 FM DevKit

Espressif 32

External

ESP32

240MHz

4MB

320KB

Valetron Systems

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Valetron Systems VALTRACK-V4MVF

Espressif 32

External

ESP32C3

160MHz

4MB

320KB

Valetron Systems VALTRACK-V4VTS

Espressif 32

External

ESP32C3

160MHz

4MB

320KB

VintLabs

Name

Platform

Debug

MCU

Frequency

Flash

RAM

VintLabs ESP32 Devkit

Espressif 32

External

ESP32

240MHz

4MB

320KB

WEMOS

Name

Platform

Debug

MCU

Frequency

Flash

RAM

WEMOS D1 MINI ESP32

Espressif 32

External

ESP32

240MHz

4MB

320KB

WEMOS D1 R32

Espressif 32

External

ESP32

240MHz

4MB

320KB

WEMOS LOLIN C3 Mini

Espressif 32

External

ESP32C3

160MHz

4MB

320KB

WEMOS LOLIN D32

Espressif 32

External

ESP32

240MHz

4MB

320KB

WEMOS LOLIN D32 PRO

Espressif 32

External

ESP32

240MHz

4MB

320KB

WEMOS LOLIN S2 Mini

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

WEMOS LOLIN S2 PICO

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

WEMOS LOLIN S3

Espressif 32

External

ESP32S3

240MHz

16MB

320KB

WEMOS LOLIN S3 Mini

Espressif 32

External

ESP32S3

240MHz

4MB

320KB

WEMOS LOLIN S3 PRO

Espressif 32

External

ESP32S3

240MHz

16MB

320KB

WEMOS LOLIN32

Espressif 32

External

ESP32

240MHz

4MB

320KB

WEMOS LOLIN32 Lite

Espressif 32

External

ESP32

240MHz

4MB

320KB

WeMos WiFi and Bluetooth Battery

Espressif 32

External

ESP32

240MHz

4MB

320KB

WeAct Studio

Name

Platform

Debug

MCU

Frequency

Flash

RAM

WeAct Studio ESP32C3CoreBoard

Espressif 32

External

ESP32C3

160MHz

384KB

400KB

Widora

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Widora AIR

Espressif 32

No

ESP32

240MHz

16MB

320KB

Wireless-Tag

Name

Platform

Debug

MCU

Frequency

Flash

RAM

Wireless-Tag WT32-ETH01 Ethernet Module

Espressif 32

External

ESP32

240MHz

4MB

320KB

XinaBox

Name

Platform

Debug

MCU

Frequency

Flash

RAM

XinaBox CW02

Espressif 32

External

ESP32

240MHz

4MB

320KB

YeaCreate

Name

Platform

Debug

MCU

Frequency

Flash

RAM

YeaCreate NSCREEN-32

Espressif 32

No

ESP32

240MHz

16MB

320KB

microS2

Name

Platform

Debug

MCU

Frequency

Flash

RAM

microS2

Espressif 32

External

ESP32S2

240MHz

16MB

320KB

oddWires

Name

Platform

Debug

MCU

Frequency

Flash

RAM

oddWires IoT-Bus Io

Espressif 32

External

ESP32

240MHz

4MB

320KB

oddWires IoT-Bus Proteus

Espressif 32

External

ESP32

240MHz

4MB

320KB

senseBox

Name

Platform

Debug

MCU

Frequency

Flash

RAM

senseBox MCU-S2 ESP32-S2

Espressif 32

External

ESP32S2

240MHz

4MB

320KB

u-blox

Name

Platform

Debug

MCU

Frequency

Flash

RAM

u-blox NINA-W10 series

Espressif 32

No

ESP32

240MHz

2MB

320KB

uPesy

Name

Platform

Debug

MCU

Frequency

Flash

RAM

uPesy ESP32 Wroom DevKit

Espressif 32

External

ESP32

240MHz

4MB

320KB

uPesy ESP32 Wrover DevKit

Espressif 32

External

ESP32

240MHz

4MB

320KB