UNPKG

homebridge-hunter-hydrawise

Version:

HomeKit integration for Hunter Hydrawise Irrigation Controllers.

11 lines 441 B
/* Copyright(C) 2017-2025, HJD (https://github.com/hjdhjd). All rights reserved. * * index.ts: homebridge-hydrawise plugin registration. */ import { PLATFORM_NAME, PLUGIN_NAME } from "./settings.js"; import { HydrawisePlatform } from "./hydrawise-platform.js"; // Register our platform with homebridge. export default (api) => { api.registerPlatform(PLUGIN_NAME, PLATFORM_NAME, HydrawisePlatform); }; //# sourceMappingURL=index.js.map