UNPKG

homebridge-ecowitt-weather-sensors

Version:

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

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