homebridge-unifi-protect
Version:
Homebridge UniFi Protect plugin providing complete HomeKit integration for the entire UniFi Protect ecosystem with full support for most features including HomeKit Secure Video, multiple controllers, blazing fast performance, and much more.
16 lines (15 loc) • 621 B
TypeScript
import type { PlatformAccessory } from "homebridge";
import type { ProtectLightConfig } from "unifi-protect";
import { ProtectDevice } from "./protect-device.js";
import type { ProtectNvr } from "../protect-nvr.js";
export declare class ProtectLight extends ProtectDevice {
private lightState;
ufp: ProtectLightConfig;
constructor(nvr: ProtectNvr, device: ProtectLightConfig, accessory: PlatformAccessory);
private configureDevice;
private configureLightbulb;
private configureMqtt;
private eventHandler;
protected statusLedCommand(value: boolean): object;
get statusLed(): boolean;
}