-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uses the v2.x ESP32 API, so doesn't compile with v3.0 #1
Comments
even with that fixed it goes into a bootloop now |
Would it be possible to get these two lines re-written for the v3.0 API? ledcSetup(0, 10000, 8); I'm struggling translating the above into the new v3.0 API statement. ledcAttach(); I have found this article, but I'm having a difficult time translating v2.0 to v3.0. Not a lot of information and I'm new at this. |
Edit 20241022: I dont have the board yet. But you can try this, starts approx on 81 :
|
Hmm , Been playing around with ESP libraries back and forth, but this seems to have done the trick. Currently my weather station is operational on a V3.0.6 ESP32 library with the settings below. User_Setup.h in TFT_eSPI library, eventually left #define USE_HSPI_PORT commented
Uncommented in User_Setup_Select.h in TFT_eSPI library
Weather.ino part
|
You can check out my updated version , compatible with both library. atleast for me :) |
The spec for ledcAttach has changed from v2 to v3 - functions of ledcSetup and ledcAttachPin are now merged.
The text was updated successfully, but these errors were encountered: