UNPKG

homebridge-wled-ws

Version:
33 lines 1.42 kB
import { API, DynamicPlatformPlugin, Logger, PlatformAccessory, PlatformConfig, Service, Characteristic } from 'homebridge'; /** * HomebridgePlatform * This class is the main constructor for the plugin, here we parse * the user config and discover/register accessories with Homebridge. */ export declare class WledWsHomebridgePlatform implements DynamicPlatformPlugin { readonly log: Logger; readonly config: PlatformConfig; readonly api: API; readonly Service: typeof Service; readonly Characteristic: typeof Characteristic; readonly accessories: PlatformAccessory[]; private controllerMap; private accessoryMap; constructor(log: Logger, config: PlatformConfig, api: API); /** * This function is invoked when homebridge restores cached accessories from disk at startup. * It should be used to setup event handlers for characteristics and update respective values. */ configureAccessory(accessory: PlatformAccessory): void; /** * This is an example method showing how to register discovered accessories. * Accessories must only be registered once, previously created accessories * must not be registered again to prevent "duplicate UUID" errors. */ discoverDevices(): void; /** * On shutdown close all existing connections */ disconnectDevices(): void; } //# sourceMappingURL=WledWsHomebridgePlatform.d.ts.map