Issues when compling bliney? #190
Unanswered
DjonesJ
asked this question in
Course Qeustions
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This is not a question, just information. If you have issues when trying to compile the blinkey project it might be due to the fact that the "gpio_pad_select_gpio(PIN)" function is deprecated, can be seen on this page:
https://www.esp32.com/viewtopic.php?t=25505
you can substitute that line with either this:
esp_rom_gpio_pad_select_gpio(PIN);
or this:
gpio_reset_pin(PIN);
and the onboard led on pin 2 will blink
Beta Was this translation helpful? Give feedback.
All reactions