-
Notifications
You must be signed in to change notification settings - Fork 90
After a few seconds my BB8 connection is failling On Mac OSX #80
Comments
I am facing the same issue where OSX is unable to get a response back from BB8 once a command is issued:
My current environment is:
|
I have the same issue, as far as I can tell BB8 is not sending back acks/responses that the framework is expecting. I increased the timeout when initializing the bb8 object but it just waits longer before showing an error. Here is a very simple ping exhibiting the issue: var sphero = require("sphero"),
bb8 = sphero("368062352763460e9591981b2974cac5", {timeout: 2000});
bb8.connect(function() {
bb8.ping(function(err, data) {
console.log(err || "data: " + data);
});
}); |
Same with SPRK+
|
same with sprk+, ditto |
`var sphero = require("sphero"),
orb = sphero("4aed76c113e84c28be75b49eb45566ea"); // change BLE address accordingly
orb.connect(function() {
// roll Sphero forward
orb.roll(150, 0);
orb.roll(10, 0);
orb.roll(80, 0);
});
});`
The text was updated successfully, but these errors were encountered: