UNPKG

homebridge-levoit-humidifiers

Version:
17 lines 670 B
import { CharacteristicGetHandler } from 'homebridge'; import { AccessoryThisType } from '../VeSyncAccessory'; /** * CurrentState characteristic handler for the Humidifier service. * Indicates whether the humidifier is currently humidifying or idle. * * Returns: * - IDLE: Device is off, target reached, or in Manual mode * - HUMIDIFYING: Device is on and actively humidifying (in Auto/Humidity/Sleep mode) * * Note: Uses cached device state from background polling to avoid slow read warnings. */ declare const characteristic: { get: CharacteristicGetHandler; } & AccessoryThisType; export default characteristic; //# sourceMappingURL=CurrentState.d.ts.map