-
-
Notifications
You must be signed in to change notification settings - Fork 63
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
Error example simple button with interrupt in ESP32. #69
Comments
Hi! I think your error is on this: void loop()
{
// put your main code here, to run repeatedly:
void(10);
} The ESP32 internal Arduino implementation feeds the watchdog timer each time a loop function is called, so that exception is because the watchdog timer was triggered for a timeout. So remove the |
Same error, even without void(10): |
Same error here: Looks like the Watchdog timer is triggering, The error backtrace is logged below Decoding stack results |
Hi, I am testing the library to include it in a larger project and replace my rudimentary library to use short press and long press on various buttons. But after compiling and uploading the example code to my ESP32 with VScode, I get this error. I use the single button example with interrupt and my ESP32 is made by doit, esp-wroom-32 devkit v1.
The text was updated successfully, but these errors were encountered: