UNPKG

homebridge-daikin-oneplus

Version:
35 lines 1.18 kB
import { PlatformAccessory } from 'homebridge'; import { DaikinApi } from './daikinapi.js'; import { AccessoryContext } from './types.js'; import { DaikinOnePlusPlatform } from './platform.js'; /** * Circulate Air Fan * Fan can either be on or off * Speed can be set to low, med, or high */ export declare class DaikinOnePlusCirculateAirFan { private readonly platform; private readonly accessory; private readonly deviceId; private readonly daikinApi; private service; constructor(platform: DaikinOnePlusPlatform, accessory: PlatformAccessory<AccessoryContext>, deviceId: string, daikinApi: DaikinApi); private updateValues; /** * Handle requests to get the current value of the "Active" characteristic */ private handleActiveGet; /** * Handle requests to set the "Active" characteristic */ private handleActiveSet; /** * Handle requests to get the current value of the "Rotation Speed" characteristic */ private handleSpeedGet; /** * Handle requests to set the "Rotation Speed" characteristic */ private handleSpeedSet; } //# sourceMappingURL=platformCirculateAirFan.d.ts.map