homebridge-levoit-humidifiers
Version:
Homebridge plugin for Levoit Humidifiers
15 lines • 618 B
TypeScript
import { CharacteristicGetHandler, CharacteristicSetHandler } from 'homebridge';
import { AccessoryThisType } from '../VeSyncAccessory';
/**
* Active characteristic handler for the Humidifier service.
* Controls the power state of the humidifier (On/Off).
*
* Note: Uses cached device state from background polling to avoid slow read warnings.
* The device state is kept fresh by periodic polling in VeSyncAccessory.
*/
declare const characteristic: {
get: CharacteristicGetHandler;
set: CharacteristicSetHandler;
} & AccessoryThisType;
export default characteristic;
//# sourceMappingURL=Active.d.ts.map