tapsterbot icon indicating copy to clipboard operation
tapsterbot copied to clipboard

Unable to detect USB serial port on Mavericks‎

Open ubatra13 opened this issue 11 years ago • 1 comments

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} );

ubatra13 avatar Feb 17 '14 16:02 ubatra13

Strange, I'm using Johnny-Five on Mavericks and have no issues connecting.

rwaldron avatar Feb 17 '14 17:02 rwaldron