@homebridge-plugins/homebridge-smarthq
Version:
The SmartHQ plugin allows you to interact with SmartHQ Devices in HomeKit and with Siri.
14 lines • 743 B
TypeScript
import type { PlatformAccessory } from 'homebridge';
import type { SmartHQPlatform } from '../platform.js';
import type { devicesConfig, SmartHqContext } from '../settings.js';
import { deviceBase } from './device.js';
export declare class SmartHQRefrigerator extends deviceBase {
readonly platform: SmartHQPlatform;
readonly device: SmartHqContext['device'] & devicesConfig;
SensorUpdateInProgress: boolean;
deviceStatus: any;
constructor(platform: SmartHQPlatform, accessory: PlatformAccessory<SmartHqContext>, device: SmartHqContext['device'] & devicesConfig);
readErd(erd: string): Promise<string>;
writeErd(erd: string, value: string | boolean): Promise<undefined>;
}
//# sourceMappingURL=refrigerator.d.ts.map