UNPKG

homebridge-ecowitt-weather-sensors

Version:

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

23 lines (22 loc) 1.08 kB
import { PlatformAccessory } from 'homebridge'; import { EcowittPlatform } from './../EcowittPlatform'; import { EcowittAccessory } from './../EcowittAccessory'; import { RainSensor } from './../sensors/RainSensor'; import { BatterySensor } from './../sensors/BatterySensor'; export declare class WN20 extends EcowittAccessory { protected readonly platform: EcowittPlatform; protected readonly accessory: PlatformAccessory; static readonly properties: string[]; protected battery: BatterySensor | undefined; protected rainRate: RainSensor | undefined; protected eventRain: RainSensor | undefined; protected hourlyRain: RainSensor | undefined; protected last24hRain: RainSensor | undefined; protected dailyRain: RainSensor | undefined; protected weeklyRain: RainSensor | undefined; protected monthlyRain: RainSensor | undefined; protected yearlyRain: RainSensor | undefined; protected totalRain: RainSensor | undefined; constructor(platform: EcowittPlatform, accessory: PlatformAccessory); update(dataReport: any): void; }