homebridge-plugin-lares4
Version:
a homebridge plugin to expose Ksenia Lares 4 home automation systems on the Apple ecosystem
14 lines (13 loc) • 598 B
TypeScript
import type { CharacteristicValue, PlatformAccessory } from 'homebridge';
import { Lares4OutputStatus } from 'lares4-ts';
import type { Lares4HomebridgePlatform } from './Lares4HomebridgePlatform.js';
export declare class Lares4PlatformLight {
private readonly platform;
private readonly accessory;
private service;
constructor(platform: Lares4HomebridgePlatform, accessory: PlatformAccessory);
setStatus(accessoryStatus: Lares4OutputStatus): void;
setOn(value: CharacteristicValue): void;
getOn(): CharacteristicValue;
setLevel(value: CharacteristicValue): void;
}