UNPKG

bb8-commander

Version:

A Node CLI Tool for Sphero BB8 Robot.

13 lines (7 loc) 222 B
module.exports = function (bb8) { console.log('Let\'s Roll!!'); return setInterval(function () { var direction = Math.floor(Math.random() * 360); bb8.roll(150, direction); }, 1000); };