@homebridge-plugins/homebridge-smarthq
Version:
The SmartHQ plugin allows you to interact with SmartHQ Devices in HomeKit and with Siri.
17 lines • 798 B
TypeScript
import type { SmartHQPlatform } from '../../../index.js';
import { type devicesConfig, type SmartHqContext } from '../../../index.js';
import { OpalDeviceBase } from '../OpalDeviceBase.js';
import type { PlatformAccessory, Service } from 'homebridge';
export declare class OpalDescaleSvcManager extends OpalDeviceBase {
service: Service;
advancedOptionQueryStrs: string[];
serviceName: string;
private configuredName;
descaleStatus: 0 | 1;
constructor(platform: SmartHQPlatform, accessory: PlatformAccessory<SmartHqContext>, device: SmartHqContext['device'] & devicesConfig);
getDescaleStatus(): Promise<void>;
setOpalDescaleStatus(updateValue: 0 | 1): void;
private createService;
getService(): Service;
}
//# sourceMappingURL=OpalDescaleSvcManager.d.ts.map