homebridge-ecowitt-weather-sensors
Version:
Homebridge support for your Fine Offset weather station (Ecowitt, Ambient, Froggit, GoGen, and more)
20 lines (19 loc) • 1.01 kB
TypeScript
import { PlatformAccessory } from 'homebridge';
import { EcowittPlatform } from './../EcowittPlatform';
import { EcowittAccessory } from './../EcowittAccessory';
import { HumiditySensor } from './../sensors/HumiditySensor';
import { TemperatureSensor } from './../sensors/TemperatureSensor';
import { ConductivitySensor } from './../sensors/ConductivitySensor';
import { BatterySensor } from './../sensors/BatterySensor';
export declare class WH52 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;
protected soilTemperature: TemperatureSensor | undefined;
protected soilConductivity: ConductivitySensor | undefined;
constructor(platform: EcowittPlatform, accessory: PlatformAccessory, channel: number);
update(dataReport: any): void;
}