homebridge-daikin-oneplus
Version:
Control a Daikin One+ thermostat.
21 lines • 662 B
TypeScript
export interface DaikinOptionsInterface {
debug: boolean;
user: string;
password: string;
includeDeviceName: boolean;
name: string;
enableEmergencyHeatSwitch: boolean;
enableOneCleanFan: boolean;
enableCirculateAirFan: boolean;
enableScheduleSwitch: boolean;
enableAwaySwitch: boolean;
ignoreIndoorAqi: boolean;
ignoreOutdoorAqi: boolean;
ignoreIndoorHumSensor: boolean;
ignoreOutdoorHumSensor: boolean;
ignoreThermostat: boolean;
ignoreOutdoorTemp: boolean;
autoResumeSchedule: boolean;
}
export type DaikinOptions = Readonly<DaikinOptionsInterface>;
//# sourceMappingURL=daikinconfig.d.ts.map