UNPKG

homebridge-ecowitt-weather-sensors

Version:

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

22 lines 1.1 kB
import { PlatformAccessory } from 'homebridge'; import { EcowittPlatform } from './../EcowittPlatform'; import { EcowittAccessory } from './../EcowittAccessory'; import { LightSensor } from './../sensors/LightSensor'; import { UltravioletSensor } from './../sensors/UltravioletSensor'; import { WindSensor } from './../sensors/WindSensor'; import { BatterySensor } from './../sensors/BatterySensor'; export declare class WS68 extends EcowittAccessory { protected readonly platform: EcowittPlatform; protected readonly accessory: PlatformAccessory; static readonly properties: string[]; protected battery: BatterySensor | undefined; protected solarRadiation: LightSensor | undefined; protected uvIndex: UltravioletSensor | undefined; protected windDirection: WindSensor | undefined; protected windSpeed: WindSensor | undefined; protected windGust: WindSensor | undefined; protected maxDailyGust: WindSensor | undefined; constructor(platform: EcowittPlatform, accessory: PlatformAccessory); update(dataReport: any): void; } //# sourceMappingURL=WS68.d.ts.map