UNPKG

homebridge-fibaro-home-center

Version:

Homebridge plugin for Fibaro Home Center (2, 2 Lite, 3, 3 Lite, Yubii Home).

11 lines (7 loc) 210 B
// index.ts import { API } from 'homebridge'; import { PLATFORM_NAME } from './constants'; import { FibaroHC } from './platform'; export = (api: API) => { api.registerPlatform(PLATFORM_NAME, FibaroHC); };