<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.diychristmas.org/wiki/index.php?action=history&amp;feed=atom&amp;title=ESP32_GPIO_Reference</id>
	<title>ESP32 GPIO Reference - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.diychristmas.org/wiki/index.php?action=history&amp;feed=atom&amp;title=ESP32_GPIO_Reference"/>
	<link rel="alternate" type="text/html" href="https://www.diychristmas.org/wiki/index.php?title=ESP32_GPIO_Reference&amp;action=history"/>
	<updated>2026-07-28T03:08:48Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.11</generator>
	<entry>
		<id>https://www.diychristmas.org/wiki/index.php?title=ESP32_GPIO_Reference&amp;diff=3663&amp;oldid=prev</id>
		<title>ErnieHorning: Created ESP32 GPIO Reference index page</title>
		<link rel="alternate" type="text/html" href="https://www.diychristmas.org/wiki/index.php?title=ESP32_GPIO_Reference&amp;diff=3663&amp;oldid=prev"/>
		<updated>2026-07-24T14:38:36Z</updated>

		<summary type="html">&lt;p&gt;Created ESP32 GPIO Reference index page&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{DISPLAYTITLE:ESP32 GPIO Reference}}&lt;br /&gt;
&lt;br /&gt;
= ESP32 GPIO Reference =&lt;br /&gt;
&lt;br /&gt;
ESP32 GPIO (General Purpose Input/Output) pins provide the electrical interface between the processor and external hardware. Although many GPIO pins can be configured for several functions, some pins may be reserved for flash memory, USB, Ethernet, boot configuration, or other onboard hardware.&lt;br /&gt;
&lt;br /&gt;
GPIO assignments vary significantly between ESP32 processor families and development boards. A pin that is suitable on one ESP32 device may be unavailable, reserved, or used differently on another.&lt;br /&gt;
&lt;br /&gt;
This page serves as the central index for ESP32 GPIO information used in DIY holiday lighting applications.&lt;br /&gt;
&lt;br /&gt;
== Before Using a GPIO Pin ==&lt;br /&gt;
&lt;br /&gt;
Always verify:&lt;br /&gt;
&lt;br /&gt;
* The exact ESP32 processor family&lt;br /&gt;
* The exact processor or module&lt;br /&gt;
* The development board pinout&lt;br /&gt;
* The board schematic&lt;br /&gt;
* Firmware GPIO support&lt;br /&gt;
* Boot and startup restrictions&lt;br /&gt;
* Onboard hardware connected to the pin&lt;br /&gt;
&lt;br /&gt;
Development boards that look nearly identical may use different processors or expose different GPIO pins.&lt;br /&gt;
&lt;br /&gt;
== GPIO Reference Pages ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Processor Family&lt;br /&gt;
! GPIO Reference&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[Original ESP32]]&lt;br /&gt;
| [[Original ESP32 GPIO Reference]]&lt;br /&gt;
| Includes commonly used ESP32-WROOM and ESP32-WROVER based boards.&lt;br /&gt;
|-&lt;br /&gt;
| [[ESP32-S Series]]&lt;br /&gt;
| [[ESP32-S Series GPIO Reference]]&lt;br /&gt;
| Covers ESP32-S2, ESP32-S3, and future S Series devices.&lt;br /&gt;
|-&lt;br /&gt;
| [[ESP32-C Series]]&lt;br /&gt;
| [[ESP32-C Series GPIO Reference]]&lt;br /&gt;
| Covers ESP32-C2, ESP32-C3, ESP32-C5, and ESP32-C6 devices.&lt;br /&gt;
|-&lt;br /&gt;
| [[ESP32-H Series]]&lt;br /&gt;
| [[ESP32-H Series GPIO Reference]]&lt;br /&gt;
| Covers low-power Thread, Zigbee, and IEEE 802.15.4 devices.&lt;br /&gt;
|-&lt;br /&gt;
| [[ESP32-P Series]]&lt;br /&gt;
| [[ESP32-P Series GPIO Reference]]&lt;br /&gt;
| Covers high-performance display and multimedia processors.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== GPIO Categories ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Category&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| General Purpose&lt;br /&gt;
| Suitable for normal digital input and output applications.&lt;br /&gt;
|-&lt;br /&gt;
| Input Only&lt;br /&gt;
| Can be used as an input but cannot drive an output.&lt;br /&gt;
|-&lt;br /&gt;
| Boot or Strapping Pin&lt;br /&gt;
| Read during startup and may affect boot mode or processor configuration.&lt;br /&gt;
|-&lt;br /&gt;
| Reserved&lt;br /&gt;
| Used internally for flash memory, PSRAM, or other essential hardware.&lt;br /&gt;
|-&lt;br /&gt;
| Special Function&lt;br /&gt;
| Shared with USB, Ethernet, JTAG, UART, ADC, DAC, touch sensing, or other peripherals.&lt;br /&gt;
|-&lt;br /&gt;
| Board-Specific&lt;br /&gt;
| Connected to onboard LEDs, buttons, displays, Ethernet hardware, or other components.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Pixel Output Considerations ==&lt;br /&gt;
&lt;br /&gt;
For pixel lighting applications, a GPIO pin should normally:&lt;br /&gt;
&lt;br /&gt;
* Support digital output&lt;br /&gt;
* Not be reserved for flash memory or PSRAM&lt;br /&gt;
* Not interfere with processor startup&lt;br /&gt;
* Not be permanently connected to onboard hardware&lt;br /&gt;
* Be supported by the selected firmware&lt;br /&gt;
* Be physically exposed on the development board&lt;br /&gt;
&lt;br /&gt;
Some boot or serial pins may still be usable after startup, but they should be selected carefully.&lt;br /&gt;
&lt;br /&gt;
== Firmware Considerations ==&lt;br /&gt;
&lt;br /&gt;
Firmware support may place additional restrictions on available GPIO pins.&lt;br /&gt;
&lt;br /&gt;
See:&lt;br /&gt;
&lt;br /&gt;
* [[WLED]]&lt;br /&gt;
* [[ESPixelStick]]&lt;br /&gt;
&lt;br /&gt;
A GPIO supported by the processor may not necessarily be available as a pixel output in every firmware version.&lt;br /&gt;
&lt;br /&gt;
== Development Board Considerations ==&lt;br /&gt;
&lt;br /&gt;
The processor datasheet shows the GPIO capabilities of the chip, but a development board may not expose every pin.&lt;br /&gt;
&lt;br /&gt;
A development board may also use GPIO pins for:&lt;br /&gt;
&lt;br /&gt;
* USB communication&lt;br /&gt;
* Status LEDs&lt;br /&gt;
* Boot and reset buttons&lt;br /&gt;
* Ethernet&lt;br /&gt;
* Displays&lt;br /&gt;
* Battery monitoring&lt;br /&gt;
* Flash memory&lt;br /&gt;
* PSRAM&lt;br /&gt;
* Camera interfaces&lt;br /&gt;
&lt;br /&gt;
See [[ESP32 Development Boards]] for additional information.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[Choosing an ESP32]]&lt;br /&gt;
* [[ESP32 Comparison Chart]]&lt;br /&gt;
* [[ESP32 Family Overview]]&lt;br /&gt;
* [[ESP32 Development Boards]]&lt;br /&gt;
* [[ESP32 Christmas Lighting Recommendations]]&lt;br /&gt;
* [[WLED]]&lt;br /&gt;
* [[ESPixelStick]]&lt;/div&gt;</summary>
		<author><name>ErnieHorning</name></author>
	</entry>
</feed>