UNPKG

@homebridge-plugins/homebridge-smarthq

Version:

The SmartHQ plugin allows you to interact with SmartHQ Devices in HomeKit and with Siri.

9 lines 346 B
import { SmartHQPlatform } from './platform.js'; import { PLATFORM_NAME, PLUGIN_NAME } from './settings.js'; // Register our platform with homebridge. export default (api) => { api.registerPlatform(PLUGIN_NAME, PLATFORM_NAME, SmartHQPlatform); }; export * from './settings.js'; export * from './platform.js'; //# sourceMappingURL=index.js.map