UNPKG

homebridge-ecowitt-weather-sensors

Version:

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

17 lines 859 B
import { PlatformAccessory } from 'homebridge'; import { EcowittPlatform } from './../EcowittPlatform'; import { EcowittAccessory } from './../EcowittAccessory'; import { LightningSensor } from './../sensors/LightningSensor'; import { BatterySensor } from './../sensors/BatterySensor'; export declare class WH57 extends EcowittAccessory { protected readonly platform: EcowittPlatform; protected readonly accessory: PlatformAccessory; static readonly properties: string[]; protected battery: BatterySensor | undefined; protected lightningEvents: LightningSensor | undefined; protected lightningDistance: LightningSensor | undefined; protected lightningTime: LightningSensor | undefined; constructor(platform: EcowittPlatform, accessory: PlatformAccessory); update(dataReport: any): void; } //# sourceMappingURL=WH57.d.ts.map