homebridge-levoit-humidifiers
Version:
Homebridge plugin for Levoit Humidifiers
14 lines • 554 B
TypeScript
import { CharacteristicGetHandler } from 'homebridge';
import { AccessoryThisType } from '../VeSyncAccessory';
/**
* Humidity characteristic handler.
* Returns the current relative humidity percentage detected by the device.
*
* 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;
} & AccessoryThisType;
export default characteristic;
//# sourceMappingURL=Humidity.d.ts.map