UNPKG

homebridge-milight-hub

Version:

Homebridge plugin for Milight Hub hosted on ESP8266

9 lines (8 loc) 256 B
const {PLATFORM_NAME} = require('./src/settings'); const {MilightPlatform} = require('./src/platform'); /** * This method registers the platform with Homebridge */ module.exports = (api) => { api.registerPlatform(PLATFORM_NAME, MilightPlatform); };