homebridge-daikin-oneplus
Version:
Control a Daikin One+ thermostat.
28 lines • 1.15 kB
TypeScript
import { PlatformAccessory } from 'homebridge';
import { DaikinApi } from './daikinapi.js';
import { AccessoryContext } from './types.js';
import { DaikinOnePlusPlatform } from './platform.js';
/**
* Emergency Heat Switch
* Unfortunately HomeKit does not support an "emergency heat" or "auxiliary heat" mode directly,
* so the code works around that by exposing a switch to both control and show the emergency heat
* status. "On" means auxiliary heat is being requested by the thermostat.
*/
export declare class DaikinOnePlusEmergencyHeatSwitch {
private readonly platform;
private readonly accessory;
private readonly deviceId;
private readonly daikinApi;
private service;
constructor(platform: DaikinOnePlusPlatform, accessory: PlatformAccessory<AccessoryContext>, deviceId: string, daikinApi: DaikinApi);
private updateValues;
/**
* Handle requests to get the current value of the "On" characteristic
*/
private handleCurrentStateGet;
/**
* Handle requests to set the "On" characteristic
*/
private handleCurrentStateSet;
}
//# sourceMappingURL=platformEmergencyHeatSwitch.d.ts.map