@homebridge-plugins/homebridge-rainbird
Version:
The Rainbird plugin allows you to access your Rainbird device(s) from HomeKit.
10 lines • 481 B
JavaScript
import { RainbirdPlatform } from './Platform.HAP.js';
import { RainbirdMatterPlatform } from './Platform.Matter.js';
import { PLATFORM_NAME, PLUGIN_NAME } from './settings.js';
import { createPlatformProxy } from './utils.js';
// Register our platform with homebridge.
export default (api) => {
const ProxyCtor = createPlatformProxy(RainbirdPlatform, RainbirdMatterPlatform);
api.registerPlatform(PLUGIN_NAME, PLATFORM_NAME, ProxyCtor);
};
//# sourceMappingURL=index.js.map