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
Board defaults to bluetooth when connecting on Mavericks ... here's a small change that I made to force connect it on available USB port
Just in case, if it is of any help to someone else.
var readDir = require('readdir'); var ports = readDir.readSync( '/dev/', ['c.usb*'] );
five = require("johnny-five"); board = new five.Board( {port: "/dev/" + ports[0], debug: false} );
The text was updated successfully, but these errors were encountered:
Strange, I'm using Johnny-Five on Mavericks and have no issues connecting.
Sorry, something went wrong.
No branches or pull requests
Board defaults to bluetooth when connecting on Mavericks ... here's a small change that I made to force connect it on available USB port
Just in case, if it is of any help to someone else.
var readDir = require('readdir');
var ports = readDir.readSync( '/dev/', ['c.usb*'] );
five = require("johnny-five");
board = new five.Board(
{port: "/dev/" + ports[0], debug: false}
);
The text was updated successfully, but these errors were encountered: