homebridge-zipabox-platform
Version: 
Homebridge plugin for Zipabox for homebridge : http://github.com/GusMuche/homebridge-zipabox-platform
9 lines (7 loc) • 358 B
JavaScript
module.exports = function(homebridge) {
  /* Platform plugin to be considered as dynamic
  registerPlatform(pluginName, platformName, constructor, dynamic), dynamic must be true */
  let ZipaPlatform = require('./lib/platform')(homebridge);
  homebridge.registerPlatform("homebridge-zipabox-platform", "ZipaboxPlatform", ZipaPlatform, true);
}