homebridge-dyson-pure-cool
Version:
Plugin for using the Dyson Pure Cool fans in homebridge.
11 lines (8 loc) • 413 B
JavaScript
const DysonPureCoolPlatform = require('./src/dyson-pure-cool-platform');
/**
* Defines the export of the platform module.
* @param homebridge The homebridge object that contains all classes, objects and functions for communicating with HomeKit.
*/
module.exports = function (homebridge) {
homebridge.registerPlatform('homebridge-dyson-pure-cool', 'DysonPureCoolPlatform', DysonPureCoolPlatform, true);
}