homebridge-ecowitt-weather-sensors
Version:
Homebridge support for your Fine Offset weather station (Ecowitt, Ambient, Froggit, GoGen, and more)
13 lines • 591 B
TypeScript
import { PlatformAccessory } from 'homebridge';
import { EcowittPlatform } from './../EcowittPlatform';
import { Sensor } from './Sensor';
export declare class HumiditySensor extends Sensor {
protected readonly platform: EcowittPlatform;
protected readonly accessory: PlatformAccessory;
protected readonly id: string;
protected readonly name: string;
constructor(platform: EcowittPlatform, accessory: PlatformAccessory, id: string, name: string);
update(humidity: number, time: string): void;
private updateHumidity;
}
//# sourceMappingURL=HumiditySensor.d.ts.map