miio
Version:
Control Mi Home devices, such as Mi Robot Vacuums, Mi Air Purifiers, Mi Smart Home Gateway (Aqara) and more
51 lines (41 loc) • 1.1 kB
JavaScript
const network = require('./network');
const Device = require('./device');
const Placeholder = require('./placeholder');
const models = require('./models');
module.exports = function(options) {
let handle = network.ref();
// Connecting to a device via IP, ask the network if it knows about it
return network.findDeviceViaAddress(options)
.then(device => {
const deviceHandle = {
ref: network.ref(),
api: device
};
// Try to resolve the correct model, otherwise use the generic device
const d = models[device.model];
if(! d) {
return new Device(deviceHandle);
} else {
return new d(deviceHandle);
}
})
.catch(e => {
if(e.code === 'missing-token' && options.withPlaceholder) {
const deviceHandle = {
ref: network.ref(),
api: e.device
};
return new Placeholder(deviceHandle);
}
// Error handling - make sure to always release the handle
handle.release();
e.device = null;
throw e;
})
.then(device => {
// Make sure to release the handle
handle.release();
return device.init();
});
};
;