homebridge-yeelight-wifi
Version:
Homebridge plugin for YeeLight bulbs & lamps.
17 lines (14 loc) • 403 B
JavaScript
const YeePlatform = require('./platform');
module.exports = (homebridge) => {
global.Accessory = homebridge.platformAccessory;
global.Service = homebridge.hap.Service;
global.Characteristic = homebridge.hap.Characteristic;
global.UUIDGen = homebridge.hap.uuid;
global.EOL = '\r\n';
homebridge.registerPlatform(
'homebridge-yeelight',
'yeelight',
YeePlatform,
true,
);
};