Skip to content

Latest commit

 

History

History
51 lines (28 loc) · 1.93 KB

Readme.md

File metadata and controls

51 lines (28 loc) · 1.93 KB

Node Sphero

How to use

npm install node-sphero

Connect your Sphero to your laptop over bluetooth. At this time only OSX 10.8/Windows 7 has been tested.

Add Sphero to your app:

var roundRobot = require('node-sphero');
var sphero = new roundRobot.Sphero();

sphero.connect();

sphero.on("connected", function(ball){
  var rgb = color();
  sphero.setRGBLED(0, 255, 0, false);
});

Run that, and your sphero should turn #00FF00... green.

Check out the examples for more ideas.

OS X

You will need Node.js 8.x and the build tool provided by xcode. The Command Line tools for xcode can be downloaded from Apple's developer site for free.

You can install NodeJS for by downloading it from nodejs.org

Windows

You will need node.js 8.x (32-bit only), (node-gyp(included with node) / Python 2.x / and the build tools provided by Visual Studio 2010)

You must use the 32bit version of nodejs, because there are issues with the serialport builds on the x64 platform. You can install NodeJS by downloading it from nodejs.org Current 32bit version is available here: http://nodejs.org/dist/v0.8.9/node-v0.8.9-x86.msi

Python. Remember you want the latest 2.x releease: python windows binaries

If you dont have visual studio 2010, you can download the express edition for free. You'll want the c++ version, or the all in one.

If have a of Visual Studio OTHER THAN 2010, you might run into some issues. Please read this

In Progress

The rest of the sphero bluetooth api functionality.

Thanks

Awesome work by Bradley Meck who built the initial version.