Adaptor.prototype.locateBridges = function(callback) {
  this.hueApi.locateBridges(function(err, result) {
    callback(err, result);
  });
};