UNPKG

homebridge-ecowitt-weather-sensors

Version:

Homebridge support for your Fine Offset weather station (Ecowitt, Ambient, Froggit, GoGen, and more)

16 lines 781 B
import { PlatformAccessory } from 'homebridge'; import { EcowittPlatform } from './../EcowittPlatform'; import { EcowittAccessory } from './../EcowittAccessory'; import { HumiditySensor } from './../sensors/HumiditySensor'; import { BatterySensor } from './../sensors/BatterySensor'; export declare class WH51 extends EcowittAccessory { protected readonly platform: EcowittPlatform; protected readonly accessory: PlatformAccessory; protected channel: number; static readonly properties: string[]; protected battery: BatterySensor | undefined; protected soilMoisture: HumiditySensor | undefined; constructor(platform: EcowittPlatform, accessory: PlatformAccessory, channel: number); update(dataReport: any): void; } //# sourceMappingURL=WH51.d.ts.map