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