homebridge-philips-hue-sync-box
Version:
Homebridge plugin for the Philips Hue Sync Box.
12 lines (9 loc) • 295 B
text/typescript
import type { API } from 'homebridge';
import { HueSyncBoxPlatform } from './platform.js';
import { PLATFORM_NAME } from './settings.js';
/**
* This method registers the platform with Homebridge
*/
export default (api: API) => {
api.registerPlatform(PLATFORM_NAME, HueSyncBoxPlatform);
};