@shadman-a/homebridge-my-ac
Version:
A Homebridge plugin for controlling/monitoring LG ThinQ devices via LG ThinQ platform.
12 lines • 527 B
JavaScript
import { default as RangeHoodV2 } from '../../devices/RangeHood.js';
export default class RangeHood extends RangeHoodV2 {
async setHoodRotationSpeed(value) {
const device = this.accessory.context.device;
await this.platform.ThinQ?.thinq1DeviceControl(device, 'VentLevel', value);
}
async setLightBrightness(value) {
const device = this.accessory.context.device;
await this.platform.ThinQ?.thinq1DeviceControl(device, 'LampLevel', value);
}
}
//# sourceMappingURL=RangeHood.js.map