Driver.prototype.streamGyroscope = function(sps, remove) {
  this.sphero.streamGyroscope(sps, remove);
  var self = this;
  this.sphero.on("gyroscope", function(data) {
    self.emit("gyroscope", data);