it("#setBackLed calls #command with params", function() {
      sphero.setBackLed(0xFF, callback);
      expect(sphero.command).to.be.calledOnce;
      expect(sphero.command)
        .to.be.calledWith(0x02, 0x21, [0xFF], callback);