homebridge-chuango-h4
Version:
A homebridge plugin for the Chuango H4 home security system.
15 lines • 756 B
TypeScript
import { API, DynamicPlatformPlugin, Logger, PlatformAccessory, PlatformConfig, Service, Characteristic } from 'homebridge';
import { Client, DeviceInfo } from 'chuango-h4-client';
export declare class ChuangoH4HomebridgePlatform implements DynamicPlatformPlugin {
readonly log: Logger;
readonly config: PlatformConfig;
readonly api: API;
readonly Service: typeof Service;
readonly Characteristic: typeof Characteristic;
readonly accessories: PlatformAccessory[];
constructor(log: Logger, config: PlatformConfig, api: API);
configureAccessory(accessory: PlatformAccessory): void;
exploreDevice(client: Client, device: DeviceInfo): void;
discoverDevices(client: Client): void;
}
//# sourceMappingURL=platform.d.ts.map