homebridge-ecowitt-weather-sensors
Version:
Homebridge support for your Fine Offset weather station (Ecowitt, Ambient, Froggit, GoGen, and more)
21 lines • 1.02 kB
TypeScript
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 WH40 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 dailyRain: RainSensor | undefined;
protected weeklyRain: RainSensor | undefined;
protected monthlyRain: RainSensor | undefined;
protected yearlyRain: RainSensor | undefined;
constructor(platform: EcowittPlatform, accessory: PlatformAccessory);
update(dataReport: any): void;
}
//# sourceMappingURL=WH40.d.ts.map