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
When I have an Action, I have to create a new ThingActionObject on every call like this:
ThingActionObject* up_action_generator(DynamicJsonDocument *input) { return new ThingActionObject("up", input, do_up, nullptr); }
But after too many calls my memory will be full and my device crashes.
The text was updated successfully, but these errors were encountered:
This is actually an issue with all of the webthing libraries. The spec doesn’t indicate if and when old actions should be dropped.
Sorry, something went wrong.
No branches or pull requests
When I have an Action, I have to create a new ThingActionObject on every call like this:
But after too many calls my memory will be full and my device crashes.
The text was updated successfully, but these errors were encountered: