homebridge-airthings
Version:
A Homebridge plugin for Airthings air quality monitors via the Airthings Consumer API.
16 lines • 448 B
TypeScript
export declare function getAirthingsDeviceInfoBySerialNumber(serialNumber: string): AirthingsDeviceInfo;
export interface AirthingsDeviceInfo {
model: string;
sensors: {
co2: boolean;
humidity: boolean;
mold: boolean;
pm1: boolean;
pm25: boolean;
pressure: boolean;
radonShortTermAvg: boolean;
temp: boolean;
voc: boolean;
};
}
//# sourceMappingURL=device.d.ts.map