homebridge-tado-platform
Version:
homebridge-tado-platform
15 lines (12 loc) • 334 B
JavaScript
/**
* v6
*
* @url https://github.com/SeydX/homebridge-tado-platform
* @author SeydX <seyd55@outlook.de>
*
**/
;
module.exports = function (homebridge) {
let TadoPlatform = require('./src/platform.js')(homebridge);
homebridge.registerPlatform('homebridge-tado-platform', 'TadoPlatform', TadoPlatform, true);
};