Search found 2 matches

by maxl_1989
Wed Feb 06, 2019 3:07 pm
Forum: ESP-IDF
Topic: ESP32 GPIO25 and GPIO26 as standard Output
Replies: 4
Views: 7579

Re: ESP32 GPIO25 and GPIO26 as standard Output

i use a esp32-wroom-32 module.
my problem is, i can't set an output level.
i think the GPIO25 is default configured to DAC, so is it enought when i only do the gpio_config(&config) to set it as normal output gpio?
by maxl_1989
Tue Feb 05, 2019 10:07 pm
Forum: ESP-IDF
Topic: ESP32 GPIO25 and GPIO26 as standard Output
Replies: 4
Views: 7579

ESP32 GPIO25 and GPIO26 as standard Output

Hello i already have spent a lot of hours to find out how to set the GPIO25 as output. i have tried a lot of things but nothing work for me! This example code work for me to set the GPIO_NUM_33 to Output but not for the GPIO_NUM_25. gpio_config_t io_conf; io_conf.intr_type = GPIO_INTR_DISABLE; io_co...