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
Set up: Ubuntu 12.04, node v0.8.1, arduino uno It tries to connect to /dev/usbmon0 where as uno is on /dev/ttyACM0
The text was updated successfully, but these errors were encountered:
I'm on the same setup -- maybe that's why I have failed to connect so far.
Sorry, something went wrong.
Quick & Dirty fix:
duino loops through all usb devices, searching for an arduino using ls /dev | grep usb.
ls /dev | grep usb
To fix this, edit board.js vim duino/lib/board.js
vim duino/lib/board.js
On line 80, change 'ls /dev | grep usb' to 'ls /dev | grep ACM'.
80
'ls /dev | grep usb'
'ls /dev | grep ACM'
Note: Not recommended but works for now. Hope @ecto fixes ecto/duino#2 soon!
A better way to do this without loosing results is:
'ls /dev | grep -e usb -e USB -ACM'
thans very much, work
No branches or pull requests
Set up: Ubuntu 12.04, node v0.8.1, arduino uno
It tries to connect to /dev/usbmon0 where as uno is on /dev/ttyACM0
The text was updated successfully, but these errors were encountered: