UNPKG

cylon-sphero-ble

Version:

Cylon.js module for Sphero BLE Robots

24 lines (19 loc) 383 B
"use strict"; var Cylon = require("cylon"); Cylon.robot({ connections: { bluetooth: { adaptor: "central", uuid: process.env.ADDRESS, module: "cylon-ble" } }, devices: { ollie: { driver: "ollie", module: "cylon-sphero-ble" } }, work: function(my) { every((1).second(), function() { my.ollie.randomColor(); }); } }).start();