UNPKG

homebridge-smartsystem

Version:

SmartServer (Proxy TCP sockets to the cloud, Smappee MQTT, Duotecno IP Nodes, Homekit interface)

10 lines (7 loc) 318 B
import { API } from "homebridge"; import { Platform } from "./server/platform"; console.log("index.ts - running in directory: " + process.cwd()); module.exports = function (api: API) { console.log("registering Duotecno Platform"); api.registerPlatform("homebridge-smartsystem", "DuotecnoPlatform", Platform); };