We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In file "lib/eQ3/eQ3.cpp" in method "bool eQ3::onTick()" I had to replace the block
} else { sendNextFragment(); lastActivity = time(NULL); }
with
} else if (state.connectionState != DISCONNECTED) { sendNextFragment(); lastActivity = time(NULL); }
otherwise I got exceptions and restarts of the ESP32.
Looking at the code it seems that the original author was aware that this code needed some more fine tuning.
The text was updated successfully, but these errors were encountered:
In the meantime, this change is included in this pull request
Sorry, something went wrong.
No branches or pull requests
In file "lib/eQ3/eQ3.cpp" in method "bool eQ3::onTick()" I had to replace the block
with
otherwise I got exceptions and restarts of the ESP32.
Looking at the code it seems that the original author was aware that this code needed some more fine tuning.
The text was updated successfully, but these errors were encountered: