homebridge-ratgdo
Version:
HomeKit integration using Ratgdo and Konnected devices for LiftMaster and Chamberlain garage door openers, without requiring myQ.
11 lines • 429 B
JavaScript
/* Copyright(C) 2017-2025, HJD (https://github.com/hjdhjd). All rights reserved.
*
* index.ts: homebridge-ratgdo plugin registration.
*/
import { PLATFORM_NAME, PLUGIN_NAME } from "./settings.js";
import { RatgdoPlatform } from "./ratgdo-platform.js";
// Register our platform with Homebridge.
export default (api) => {
api.registerPlatform(PLUGIN_NAME, PLATFORM_NAME, RatgdoPlatform);
};
//# sourceMappingURL=index.js.map