Adafruit MagTag 2.9"
by Adafruit
ESP32-S2 board with a 2.9" E-Ink display - perfect for low-power dashboards, signage, and to-do lists.

On this page
Pinout
29 pins| Pin | GPIO | Labels | Status | Capabilities | Notes |
|---|---|---|---|---|---|
| 1 | 0 | PIN_BUTTON5 | strapping | - | |
| 2 | 1 | PIN_NEOPIXELA2PWM | safe | adc | |
| 3 | 2 | A3PWM | safe | adc | |
| 4 | 3 | LIGHT_SENSORA4PWM | safe | adc | |
| 5 | 4 | BATT_MONITORA5PWM | safe | adc | |
| 6 | 5 | EPD_BUSYA6PWM | safe | adc | |
| 7 | 6 | EPD_RESETA7PWM | safe | adc | |
| 8 | 7 | EPD_DCA8PWM | safe | adc | |
| 9 | 8 | EPD_CSSSA9PWM | safe | adc · spi | |
| 10 | 9 | ACCEL_IRQA10PWM | strapping | adc | |
| 11 | 10 | A11T10PWM | strapping | adc · touch | |
| 12 | 11 | PIN_BUTTON4A12PWM | strapping | adc | |
| 13 | 12 | PIN_BUTTON3A13PWM | strapping | adc | |
| 14 | 13 | LED_BUILTINA14PWM | strapping | adc | |
| 15 | 14 | PIN_BUTTON2A15PWM | strapping | adc | |
| 16 | 15 | PIN_BUTTON1A16PWM | strapping | adc | |
| 17 | 16 | SPEAKER_SHUTDOWNA17PWM | strapping | adc | |
| 18 | 17 | A0DAC1PWM | safe | adc · dac | |
| 19 | 18 | A1DAC2PWM | safe | adc · dac | |
| 20 | 19 | A18PWM | uart | adc | |
| 21 | 20 | A19PWM | uart | adc | |
| 22 | 21 | NEOPIXEL_POWERPWM | safe | - | |
| 23 | 33 | SDAPWM | strapping | i2c | |
| 24 | 34 | SCLPWM | strapping | i2c | |
| 25 | 35 | MOSIPWM | strapping | spi | |
| 26 | 36 | SCKPWM | strapping | spi | |
| 27 | 37 | MISOPWM | strapping | spi | |
| 28 | 43 | TXPWM | uart | uart | |
| 29 | 44 | RXPWM | uart | uart |
Start with these
13 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_BUTTON5 | 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 |
| PIN_BUTTON1 | XTAL_32K_P | If an external 32 kHz crystal is used for RTC, this pin is dedicated to the crystal and cannot be used as GPIO. | Other |
| SPEAKER_SHUTDOWN | 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 |
Only if you know the tricks
wired to flash or USB - expect a fight| Pin | Label | What to know | Role |
|---|---|---|---|
| ACCEL_IRQ | FSPIHD | Typically used as flash/PSRAM IO line in certain configurations; avoid using as GPIO if flash or PSRAM is present. | Flash |
| A11 | FSPICS0 | Often used as flash chip select in some designs; not available for GPIO when controlling flash. | Flash |
| PIN_BUTTON4 | FSPID | Used for flash data transfer in certain configurations; should be avoided for general use if flash is connected. | Flash |
| PIN_BUTTON3 | FSPICLK | Used as flash clock line in some boards; not free for GPIO if driving flash. | Flash |
| LED_BUILTIN | FSPIQ | Used for flash data output in certain configurations; avoid using as GPIO if connected to flash. | Flash |
| PIN_BUTTON2 | FSPIWP | Used as flash write-protect/data line on some modules; not recommended for other usage. | Flash |
| A18 | USB_D- | Used for USB communication; using this pin as general GPIO can interfere with USB functionality. | USB |
| A19 | USB_D+ | Dedicated to USB interface; repurposing as GPIO may disrupt USB connectivity. | USB |
| SDA | SPIHD | Connected to SPI flash (hold/data line); not available for general-purpose use. | Flash |
| SCL | SPIWP | Connected to SPI flash (write-protect/data line); not recommended for other use. | Flash |
| MOSI | FSPID | Used by internal flash/PSRAM on some ESP32-S2 variants; avoid using as GPIO to prevent conflicts. | Flash |
| SCK | FSPICLK | May be connected to internal flash or used for high-speed SPI; not intended for general GPIO use. | Flash |
| MISO | FSPIQ | Used for internal flash/PSRAM data in some models; should not be repurposed for GPIO. | Flash |
Pinout notes The Adafruit MagTag 2.9" pinout brings out 29 GPIO pins - every one of them usable in your project. For peripherals, I²C is mapped to SDA on GPIO33 and SCL on…
The Adafruit MagTag 2.9" pinout brings out 29 GPIO pins - every one of them usable in your project.
For peripherals, I²C is mapped to SDA on GPIO33 and SCL on GPIO34; the SPI bus (MOSI, MISO, SCK, SS) is broken out in full; TX/RX on GPIO43 and GPIO44 cover serial logging and flashing.
On the analog side there are 20 ADC-capable pins for sensors and battery monitoring, 1 capacitive-touch inputs and 2 true DAC outputs.
If you want zero surprises, PIN_NEOPIXEL, A3, LIGHT_SENSOR, BATT_MONITOR and 9 more are free of any such role - the safest first picks. 3 of the exposed pins carry boot-time or system duties on the ESP32-S2 (PIN_BUTTON5, PIN_BUTTON1 and SPEAKER_SHUTDOWN).
Getting started
flash your first firmware in ~2 minutesBoard: Magtag29 Esp32s2
USB CDC On Boot: Enabled
Flash Size: 4MB · DIO
Upload Speed: 921600
// blink
pinMode(1, OUTPUT);
digitalWrite(1, LOW); // on (often inverted)[env:adafruit_magtag29_esp32s2]
platform = espressif32
board = esp32-s2-saola-1
framework = arduino
monitor_speed = 115200
upload_speed = 921600esp32:
board: esp32-s2-saola-1
variant: adafruit_magtag29_esp32s2
framework:
type: esp-idf
# blink - GPIO1
output:
- platform: gpio
pin: 1
id: led_out
light:
- platform: binary
name: "LED"
output: led_outesptool.py --chip esp32s2 --port /dev/ttyACM0 \
write_flash 0x0 firmware.binSpecifications
ESP32-S2 · 80 × 53.5 mmAbout this board
At its core is the ESP32-S2 - a single-core Xtensa with native USB-OTG and no Bluetooth.
Expect to pay about $34.95 - above the ~$20 typical for ESP32-S2 boards.
Onboard you'll find 2MB (QSPI) PSRAM, an ePaper 2.9" 296x128 display, a STEMMA QT connector, a speaker, an amplifier, an addressable RGB LED (GPIO1), an ambient-light sensor, battery charging via JST-PH 2.0 and D15/D14/D12/D11/Boot/Reset buttons.
It flashes over native USB - no serial-converter driver needed, which isn't a given among ESP32-S2 boards.
- LIS3DH triple-axis accelerometer
- M3 standoff mounts for magnetic feet (metal-surface mounting)
- Two STEMMA 3-pin JST connectors (D10, A1)
Where to buy
prices are typical street prices
Resources
Similar boards




