UNPKG

homebridge-loxone-proxy

Version:

Homebridge Dynamic Platform Plugin which exposes a Loxone System to Homekit.

15 lines 524 B
import { BaseService } from './BaseService'; import { PlatformAccessory } from 'homebridge'; import { LoxonePlatform } from '../../LoxonePlatform'; export declare class MotionSensor extends BaseService { State: { MotionDetected: boolean; }; constructor(platform: LoxonePlatform, accessory: PlatformAccessory, device?: any); setupService(): void; updateService: (message: { value: number; }) => void; handleMotionDetectedGet(): boolean; } //# sourceMappingURL=MotionSensor.d.ts.map