UNPKG

@homebridge-plugins/homebridge-air

Version:

The AirNow plugin allows you to monitor the current AirQuality for your Zip Code from HomeKit and Siri.

9 lines 451 B
import { AirMatterPlatform } from './AirMatterPlatform.js'; import { AirPlatform } from './platform.js'; import { PLATFORM_NAME, PLUGIN_NAME } from './settings.js'; import { createPlatformProxy } from './utils.js'; // Register our platform with homebridge using a HAP/Matter proxy. export default (api) => { api.registerPlatform(PLUGIN_NAME, PLATFORM_NAME, createPlatformProxy(AirPlatform, AirMatterPlatform)); }; //# sourceMappingURL=index.js.map