Deneyap Mini v2
by Deneyap
Updated ESP32-S2 educational board with improved design - great for STEM and rapid prototyping.

On this page
Pinout
23 pins · 2.54 mm pitch| Pin | GPIO | Labels | Status | Capabilities | Notes |
|---|---|---|---|---|---|
| 1 | 0 | GPKEYD13 | strapping | - | |
| 2 | 7 | A0T0PWM | safe | adc · touch | |
| 3 | 8 | A1T1PWM | safe | adc · touch | |
| 4 | 9 | A2T2PWM | strapping | adc · touch | |
| 5 | 10 | A3T3PWM | strapping | adc · touch | |
| 6 | 11 | A4T4PWM | strapping | adc · touch | |
| 7 | 12 | A5T5PWM | strapping | adc · touch | |
| 8 | 13 | A6T6PWM | strapping | adc · touch | |
| 9 | 16 | A7PWM | strapping | adc | |
| 10 | 17 | D12DAC0PWM | safe | dac | |
| 11 | 18 | D11DAC1PWM | safe | dac | |
| 12 | 21 | SSD10PWM | safe | spi | |
| 13 | 26 | D9PWM | strapping | - | |
| 14 | 33 | LED_BUILTIND14PWM | strapping | - | |
| 15 | 36 | SDAD8PWM | strapping | i2c | |
| 16 | 37 | SCLD7PWM | strapping | i2c | |
| 17 | 38 | SCKD6PWM | strapping | spi | |
| 18 | 39 | MISOD5PWM | strapping | spi | |
| 19 | 40 | MOSID4PWM | strapping | spi | |
| 20 | 41 | D3PWM1PWM | strapping | - | |
| 21 | 42 | D2PWM0PWM | strapping | - | |
| 22 | 43 | TXD1PWM | uart | uart | |
| 23 | 44 | RXD0PWM | uart | uart |
Start with these
7 pins with no boot or system involvementFreely assignable - no strapping, flash, USB or JTAG duties. Ideal first picks for buttons, sensors and LEDs.
Fine - with a little care
sampled at boot or shared with debug/serial| Pin | Label | What to know | Role |
|---|---|---|---|
| GPKEY | GPIO0 | Must be pulled high for normal boot; pulling low at reset enters bootloader (download mode). Also serves as SPI flash data-in (SPID) line when using external flash memory. | Strapping |
| A7 | XTAL_32K_N | If using an external 32 kHz crystal, this pin is connected to the crystal and should not be used as general I/O. | Other |
| MISO | MTCK | Used for JTAG debugging interface; using this pin for other purposes will disable JTAG clock input. | Other |
| MOSI | MTDO | Part of JTAG interface (TDO); should be avoided as GPIO if JTAG debugging is needed. | Other |
| D3 | MTDI | Part of JTAG interface (TDI); avoid using as GPIO to retain ability for JTAG debug. | Other |
| D2 | MTMS | JTAG TMS pin; should not be repurposed if JTAG debugging or programming via JTAG is required. | Other |
Only if you know the tricks
wired to flash or USB - expect a fight| Pin | Label | What to know | Role |
|---|---|---|---|
| A2 | FSPIHD | Typically used as flash/PSRAM IO line in certain configurations; avoid using as GPIO if flash or PSRAM is present. | Flash |
| A3 | FSPICS0 | Often used as flash chip select in some designs; not available for GPIO when controlling flash. | Flash |
| A4 | FSPID | Used for flash data transfer in certain configurations; should be avoided for general use if flash is connected. | Flash |
| A5 | FSPICLK | Used as flash clock line in some boards; not free for GPIO if driving flash. | Flash |
| A6 | FSPIQ | Used for flash data output in certain configurations; avoid using as GPIO if connected to flash. | Flash |
| D9 | SPICS1 | Used to connect external PSRAM (or second SPI memory); should be avoided as GPIO if such memory is present. | Flash |
| LED_BUILTIN | SPIHD | Connected to SPI flash (hold/data line); not available for general-purpose use. | Flash |
| SDA | FSPICLK | May be connected to internal flash or used for high-speed SPI; not intended for general GPIO use. | Flash |
| SCL | FSPIQ | Used for internal flash/PSRAM data in some models; should not be repurposed for GPIO. | Flash |
| SCK | FSPIWP | Reserved for flash/PSRAM in ESP32-S2 modules with internal memory; not recommended for general I/O. | Flash |
Pinout notes All 23 pins on the Deneyap Mini v2 are usable GPIO, spaced at the standard 2.54 mm pitch. Peripheral wiring is straightforward: I²C is mapped to SDA on GPIO36…
All 23 pins on the Deneyap Mini v2 are usable GPIO, spaced at the standard 2.54 mm pitch.
Peripheral wiring is straightforward: I²C is mapped to SDA on GPIO36 and SCL on GPIO37; the SPI bus (MOSI, MISO, SCK, SS) is broken out in full; TX/RX on GPIO43 and GPIO44 cover serial logging and flashing.
Beyond plain digital I/O you get 8 ADC-capable pins for sensors and battery monitoring, 7 capacitive-touch inputs and 2 true DAC outputs.
6 of the exposed pins carry boot-time or system duties on the ESP32-S2 (GPKEY, A7, MISO and 3 more) - check the guidance above before wiring anything to them. A0, A1, D12, D11 and 3 more are free of any such role - the safest first picks.
Getting started
flash your first firmware in ~2 minutesBoard: ESP32S2 Dev Module USB CDC On Boot: Enabled Flash Size: 4MB (32Mb) Flash Mode: DIO PSRAM: QSPI PSRAM Partition Scheme: Default 4MB with spiffs (1.2MB APP / 1.5MB SPIFFS) Upload Speed: 921600
// blink the onboard LED
void setup() {
pinMode(7, OUTPUT);
}
void loop() {
digitalWrite(7, HIGH); delay(500);
digitalWrite(7, LOW); delay(500);
}[env:deneyapminiv2]
platform = espressif32
board = esp32-s2-saola-1
framework = arduino
monitor_speed = 115200
upload_speed = 921600
board_build.arduino.memory_type = qio_qspi
build_flags = -DBOARD_HAS_PSRAMesp32-s2-saola-1 — or type it after board =.esp32:
board: esp32-s2-saola-1
variant: deneyapminiv2
framework:
type: esp-idf
psram:
mode: quad
speed: 80MHz
# blink - GPIO7
output:
- platform: gpio
pin: 7
id: led_out
light:
- platform: binary
name: "LED"
output: led_outesp32-s2-saola-1 (same ids as PlatformIO).esptool.py --chip esp32s2 --port /dev/ttyACM0 \
--baud 921600 write_flash 0x0 firmware.bin--port = your /dev/tty* (macOS/Linux) or COMx (Windows).Specifications
ESP32-S2 · 50 × 20.32 mmAbout this board
Inside sits the ESP32-S2 - a single-core Xtensa with native USB-OTG and no Bluetooth.
Around the module: 2MB (QSPI) PSRAM, a Qwiic/STEMMA QT connector, an addressable RGB LED (GPIO33) and Reset/GPKEY buttons.
It flashes over native USB - no serial-converter driver needed, which isn't a given among ESP32-S2 boards.
Resources
Similar boards



