Adafruit ItsyBitsy ESP32
by Adafruit
Small ESP32 board in ItsyBitsy format - ideal for low-power wireless projects in compact enclosures.

On this page
Pinout
21 pins · 2.54 mm pitch| Pin | GPIO | Labels | Status | Capabilities | Notes |
|---|---|---|---|---|---|
| 1 | 0 | PIN_NEOPIXEL | strapping | - | |
| 2 | 2 | NEOPIXEL_POWERPWM | strapping | - | |
| 3 | 4 | A2T0PWM | strapping | adc · touch | |
| 4 | 8 | RXPWM | strapping | uart | |
| 5 | 12 | T5PWM | strapping | touch | |
| 6 | 13 | LED_BUILTINT4PWM | strapping | touch | |
| 7 | 14 | T6PWM | strapping | touch | |
| 8 | 15 | SDAT3PWM | strapping | touch · i2c | |
| 9 | 19 | SCKPWM | safe | spi | |
| 10 | 20 | TXPWM | uart | uart | |
| 11 | 21 | MOSIPWM | safe | spi | |
| 12 | 22 | MISOPWM | safe | spi | |
| 13 | 25 | A0DAC1PWM | safe | adc · dac | |
| 14 | 26 | A1DAC2PWM | safe | adc · dac | |
| 15 | 27 | SCLT7PWM | safe | touch · i2c | |
| 16 | 32 | SST9PWM | safe | touch · spi | |
| 17 | 33 | T8PWM | safe | touch | |
| 18 | 35 | BUTTON | strapping | - | |
| 19 | 36 | A5 | strapping | adc | |
| 20 | 37 | A4 | strapping | adc | |
| 21 | 38 | A3 | strapping | adc |
Start with these
9 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 |
|---|---|---|---|
| PIN_NEOPIXEL | GPIO0 | Must be HIGH during boot for normal startup; if held LOW on reset, forces flash programming mode. | Strapping |
| NEOPIXEL_POWER | GPIO2 | If driven HIGH on reset (while IO0 is LOW), selects an unsupported SDIO boot mode, causing boot failure. | Strapping |
| A2 | GPIO4 | Sampled at reset for boot config; should not be driven at boot (affects boot mode timing). | Strapping |
| T5 | MTDI (GPIO12) | Keep LOW during boot (internal PD); pulling HIGH at reset selects 1.8V flash mode, causing flash brownout if 3.3V flash is used. | Strapping |
| LED_BUILTIN | MTCK (GPIO13) | Used for JTAG debugging (TCK); avoid using as GPIO if JTAG is needed. | Other |
| T6 | MTMS (GPIO14) | Used for JTAG debugging (TMS); driving it as GPIO may interfere with JTAG or produce spurious signals at boot. | Other |
| SDA | MTDO (GPIO15) | Keep HIGH during boot (internal PU); if LOW on reset, bootloader log is silenced and boot mode may change. | Strapping |
| BUTTON | GPIO35 | Cannot be used as output; only suitable for input. | Other |
| A5 | GPIO36 (SENSOR_VP) | Cannot be used as output; only suitable for input (e.g., analog read). | Other |
| A4 | GPIO37 (SENSOR_CAPP) | Cannot be used as output; only suitable for input. | Other |
| A3 | GPIO38 (SENSOR_CAPN) | Cannot be used as output; only suitable for input. | Other |
Only if you know the tricks
wired to flash or USB - expect a fight| Pin | Label | What to know | Role |
|---|---|---|---|
| RX | GPIO8 (Flash SD1) | Used for internal flash/PSRAM data; not available for general GPIO. | Flash |
Pinout notes All 21 pins on the Adafruit ItsyBitsy ESP32 are usable GPIO, spaced at the standard 2.54 mm pitch. Peripheral wiring is straightforward: I²C is mapped to SDA…
All 21 pins on the Adafruit ItsyBitsy ESP32 are usable GPIO, spaced at the standard 2.54 mm pitch.
Peripheral wiring is straightforward: I²C is mapped to SDA on GPIO15 and SCL on GPIO27; the SPI bus (MOSI, MISO, SCK, SS) is broken out in full; TX/RX on GPIO20 and GPIO8 cover serial logging and flashing.
Beyond plain digital I/O you get 6 ADC-capable pins for sensors and battery monitoring, 8 capacitive-touch inputs and 2 true DAC outputs.
11 of the exposed pins carry boot-time or system duties on the ESP32 (PIN_NEOPIXEL, NEOPIXEL_POWER, A2 and 8 more) - check the guidance above before wiring anything to them. SCK, TX, MOSI, MISO and 5 more are free of any such role - the safest first picks.
Getting started
flash your first firmware in ~2 minutesBoard: ESP32 Wrover Module Flash Size: 8MB (64Mb) Flash Mode: DIO PSRAM: QSPI PSRAM Partition Scheme: 8M with spiffs (3MB APP / 1.5MB SPIFFS) Upload Speed: 921600
// blink the onboard LED
void setup() {
pinMode(19, OUTPUT);
}
void loop() {
digitalWrite(19, HIGH); delay(500);
digitalWrite(19, LOW); delay(500);
}[env:adafruit_itsybitsy_esp32]
platform = espressif32
board = esp32dev
framework = arduino
monitor_speed = 115200
upload_speed = 921600
board_build.arduino.memory_type = qio_qspi
build_flags = -DBOARD_HAS_PSRAMesp32dev — or type it after board =.esp32:
board: esp32dev
variant: adafruit_itsybitsy_esp32
framework:
type: esp-idf
psram:
mode: quad
speed: 80MHz
# blink - GPIO19
output:
- platform: gpio
pin: 19
id: led_out
light:
- platform: binary
name: "LED"
output: led_outesp32dev (same ids as PlatformIO).esptool.py --chip esp32 --port /dev/ttyACM0 \
--baud 921600 write_flash 0x0 firmware.bin--port = your /dev/tty* (macOS/Linux) or COMx (Windows).Specifications
ESP32 · 36 × 17.6 mmAbout this board
Inside sits the ESP32 - a dual-core Xtensa with both Bluetooth Classic and BLE.
At $14.95 it's cheaper than most ESP32 boards, which usually run around $20.
Around the module: 2MB (QSPI) PSRAM, a STEMMA QT connector, status LEDs (Red (D13)) and Reset/User buttons.
Where to buy
prices are typical street prices
Resources
Similar boards




