homebridge-daikin-oneplus
Version:
Control a Daikin One+ thermostat.
40 lines • 1.54 kB
TypeScript
import { PlatformAccessory } from 'homebridge';
import { DaikinApi } from './daikinapi.js';
import { AccessoryContext } from './types.js';
import { DaikinOnePlusPlatform } from './platform.js';
/**
* Air Quality Sensor
* Sensor to set or get air quality values. Handles both indoor and outdoor sensors.
* Assumes PM2_5Density for particle density as actual units Daikin uses are unknown.
*/
export declare class DaikinOnePlusAQSensor {
private readonly platform;
private readonly accessory;
private readonly deviceId;
private readonly daikinApi;
private readonly forIndoor;
private service;
constructor(platform: DaikinOnePlusPlatform, accessory: PlatformAccessory<AccessoryContext>, deviceId: string, daikinApi: DaikinApi, forIndoor: boolean);
private updateValues;
/**
* Handle requests to get the current value of the "Air Quality" characteristic
*/
private handleAirQualityGet;
/**
* Handle requests to get the current value of the "Ozone Density" characteristic
*/
private handleOzoneGet;
/**
* Handle requests to get the current value of the "Current Temperature" characteristic
*/
private handleAirQualityValueGet;
/**
* Handle requests to get the current value of the "PM2.5 Density" characteristic
*/
private handlePM2_5DensityGet;
/**
* Handle requests to get the current value of the "Current Relative Humidity" characteristic
*/
private handleVocDensityGet;
}
//# sourceMappingURL=platformAQI.d.ts.map