UNPKG

homebridge-plugin-lares4

Version:

a homebridge plugin to expose Ksenia Lares 4 home automation systems on the Apple ecosystem

12 lines (11 loc) 533 B
import type { CharacteristicValue, PlatformAccessory } from 'homebridge'; import { Lares4SensorStatus } from 'lares4-ts'; import type { Lares4HomebridgePlatform } from './Lares4HomebridgePlatform.js'; export declare class Lares4PlatformLightSensor { private readonly platform; private readonly accessory; private service; constructor(platform: Lares4HomebridgePlatform, accessory: PlatformAccessory); setStatus(accessoryStatus: Lares4SensorStatus): void; getCurrentAmbientLightLevel(): CharacteristicValue; }