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