UNPKG

homebridge-yeelight-wifi

Version:
17 lines (14 loc) 403 B
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, ); };