tapsterbot
tapsterbot copied to clipboard
Unable to detect USB serial port on Mavericks
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} );
Strange, I'm using Johnny-Five on Mavericks and have no issues connecting.