homebridge-ecowitt-weather-sensors
Version:
Homebridge support for your Fine Offset weather station (Ecowitt, Ambient, Froggit, GoGen, and more)
17 lines • 741 B
TypeScript
import { PlatformAccessory } from 'homebridge';
import { EcowittPlatform } from './../EcowittPlatform';
import { Sensor } from './Sensor';
export declare class AirQualitySensor 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);
updatePM10(pm10: number, time: string): void;
updatePM25(pm25: number, time: string): void;
private updatePM10Density;
private updatePM25Density;
private updatePM10Quality;
private updatePM25Quality;
}
//# sourceMappingURL=AirQualitySensor.d.ts.map