UNPKG

homebridge-homeconnect

Version:

A Homebridge plugin that connects Home Connect appliances to Apple HomeKit

9 lines 367 B
// Homebridge plugin for Home Connect home appliances // Copyright © 2019-2025 Alexander Thoukydides import { PLATFORM_NAME } from './settings.js'; import { HomeConnectPlatform } from './platform.js'; // Register the platform with Homebridge export default (api) => { api.registerPlatform(PLATFORM_NAME, HomeConnectPlatform); }; //# sourceMappingURL=index.js.map