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
currently exception is not handled. need to present with human readable error message as well
The text was updated successfully, but these errors were encountered:
I have the same error. Is there something to do to avoid it?
Sorry, something went wrong.
Adding an error handler in linuxConnector.js prevents the exception from being thrown, and the application keeps on running ;)
linuxConnector.js
After this (around line 75):
controller = new joystick(0, 3500, 350);
add:
controller.on('error', function (err) { console.log("Joystick error: ", err); });
nice, will include.
No branches or pull requests
currently exception is not handled. need to present with human readable error message as well
The text was updated successfully, but these errors were encountered: