We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am running the basic.js code from the repository and running into this error: Cannot find the 'cylon-sphero' module.
The basic.js code looks like this: "use strict";
var Cylon = require("cylon");
Cylon.robot({ connections: { sphero: { adaptor: "sphero", port: "/dev/tty.Sphero-YWY-AMP-SPP" } },
devices: { sphero: { driver: "sphero" } },
work: function(me) { every((1).second(), function() { me.sphero.roll(60, Math.floor(Math.random() * 360)); }); } }).start();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am running the basic.js code from the repository and running into this error: Cannot find the 'cylon-sphero' module.
The basic.js code looks like this:
"use strict";
var Cylon = require("cylon");
Cylon.robot({
connections: {
sphero: { adaptor: "sphero", port: "/dev/tty.Sphero-YWY-AMP-SPP" }
},
devices: {
sphero: { driver: "sphero" }
},
work: function(me) {
every((1).second(), function() {
me.sphero.roll(60, Math.floor(Math.random() * 360));
});
}
}).start();
The text was updated successfully, but these errors were encountered: