ESP32 – Internal Pull-Up/Pull-Down Resistor on ESP32 Output Pin

esp32

When configuring a pin as output on the ESP32, does it set an internal pull-up or pull-down resistor?

I am connecting a bus buffer to an output pin, and I am not sure whether I should use a pull-up or pull-down resistor on the bus.

EDIT – Schematic:
ESP32 with bus buffer

Best Answer

Output pins output a certain voltage. Adding internal pull-up or pull-down resistors to output pins is silly because they won't do anything except for wasting power.

The output pin is equivalent to a 0-ohm pull-up or pull-down resistor already (depending on whether your software makes it high or low).

Related Topic