homebridge-levoit-air-purifier
Version:
Made for Core 200S/300S/400S/400S Pro/600S
11 lines • 412 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const characteristic = {
get: async function () {
await this.device.updateInfo();
const { PURIFYING_AIR, INACTIVE } = this.platform.Characteristic.CurrentAirPurifierState;
return this.device.isOn ? PURIFYING_AIR : INACTIVE;
}
};
exports.default = characteristic;
//# sourceMappingURL=CurrentState.js.map