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