@homebridge-plugins/homebridge-tado
Version:
Homebridge plugin for controlling tado° devices.
15 lines (12 loc) • 411 B
JavaScript
/**
* v7
*
* @url https://github.com/homebridge-plugins/homebridge-tado
* @author maintained by smart7324 <34960772+smart7324@users.noreply.github.com> - author SeydX <seyd55@outlook.de>
*
**/
import TadoPlatformModule from './src/platform.js';
export default function (homebridge) {
const TadoPlatform = TadoPlatformModule(homebridge);
homebridge.registerPlatform('TadoPlatform', TadoPlatform);
};