@elshaer/homebridge-hdl-buspro-enhanced
Version:
Linking the HDL bus into the Homebridge widget
17 lines • 872 B
TypeScript
import { API, DynamicPlatformPlugin, Logger, PlatformAccessory, PlatformConfig, Service, Characteristic } from 'homebridge';
import { Bus, Device } from 'smart-bus';
export declare class HDLBusproHomebridge 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;
discoverDevices(): void;
discoverDevice(busObj: Bus, subnet_number: number, device: any, uniqueIDPrefix: string, controllerObj: Device, addressedDeviceMap: Map<any, any>): void;
private handleRGBDevice;
private buildDevice;
}
//# sourceMappingURL=HDLPlatform.d.ts.map