Skip to content

morganrallen/simple-sphero

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

simple-sphero

Implements very basic controls for Sphero.

example

var simple = require("simple-sphero")(/path/to/dev, 0xSPEED);

simple.left();
simple.forward(1);

This will turn left and go forward for 1 second.

Chainable

simple
  .left()
  .forward(1)
  .left()
  .forward(1)
  .right()
  .forward(1);
  .right()
  .forward(1)
  .stop();

The chaining automatically takes care of asyncing calls after forward(n) for n time.

About

left/right/forward for Spero

Resources

Stars

Watchers

Forks

Packages

No packages published