UNPKG

homebridge-tahoma-fork

Version:

Sample Platform plugin for TaHoma and Cozytouch services (Somfy,Atlantic,Thermor,Sauter): https://github.com/Stuard40/homebridge-tahoma

18 lines 1.01 kB
import { Characteristic } from 'homebridge'; import { Command } from 'overkiz-client'; import WaterHeatingSystem from '../WaterHeatingSystem'; export default class DomesticHotWaterProduction extends WaterHeatingSystem { protected THERMOSTAT_CHARACTERISTICS: string[]; protected currentShower: Characteristic | undefined; protected targetShower: Characteristic | undefined; protected TARGET_MODES: number[]; protected registerMainService(): import("homebridge").Service; protected registerServices(): import("homebridge").Service[]; protected getTargetStateCommands(value: any): Command | Array<Command> | undefined; protected getTargetTemperatureCommands(value: any): Command | Array<Command>; protected getOnCommands(value: any): Command | Array<Command>; setTargetShower(value: any): Promise<void>; protected onStateChanged(name: string, value: any): void; protected computeStates(protcol: any): void; } //# sourceMappingURL=DomesticHotWaterProduction.d.ts.map