Skip to content

Some examples of using Node to control Sphero and an SDK.

Notifications You must be signed in to change notification settings

mmacaula/node-sphero

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.on('connected', function(ball) {
  ball.setRGBLED(0, 255, 0, false);
});

sphero.connect();

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 release: 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.

About

Some examples of using Node to control Sphero and an SDK.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%