UNPKG

homebridge-ecowitt-weather-sensors

Version:

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

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