PIN 26 pull up

All ESP32 boards running MicroPython.
Target audience: MicroPython users with an ESP32 board.
Post Reply
straga
Posts: 14
Joined: Mon Apr 17, 2017 7:38 am

PIN 26 pull up

Post by straga » Wed Oct 04, 2017 8:57 am

but_26_pin = 26
butto26 = machine.Pin(but_26_pin, mode=Pin.IN, pull=Pin.PULL_UP)

but pin have 1.5v ?
If make pull_down it have 3.3v ?

what right ?

User avatar
pythoncoder
Posts: 5956
Joined: Fri Jul 18, 2014 8:01 am
Location: UK
Contact:

Re: PIN 26 pull up

Post by pythoncoder » Wed Oct 04, 2017 2:17 pm

I can't replicate this - my board works as expected,

I see 3.3V on pin 26 with pull=Pin.PULL_UP and 0V with pull=Pin.PULL_DOWN. This is on an Espressif ESP32-DEVKITC with ESP-WROOM-32.
Peter Hinch
Index to my micropython libraries.

Post Reply