homebridge-plugin-lares4
Version:
a homebridge plugin to expose Ksenia Lares 4 home automation systems on the Apple ecosystem
12 lines (11 loc) • 461 B
TypeScript
import type { CharacteristicValue, PlatformAccessory } from 'homebridge';
import type { Lares4HomebridgePlatform } from './Lares4HomebridgePlatform.js';
export declare class Lares4PlatformScenario {
private readonly platform;
private readonly accessory;
private service;
constructor(platform: Lares4HomebridgePlatform, accessory: PlatformAccessory);
reset(): void;
handleGet(): number;
handleSet(value: CharacteristicValue): void;
}