UNPKG

homebridge-tahoma

Version:

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

14 lines 733 B
import { Command } from 'overkiz-client'; import HeatingSystem from '../HeatingSystem'; export default class SomfyHeatingTemperatureInterface extends HeatingSystem { protected THERMOSTAT_CHARACTERISTICS: string[]; protected MIN_TEMP: number; protected MAX_TEMP: number; protected TARGET_MODES: number[]; protected getTargetStateCommands(value: any): Command | Array<Command> | undefined; protected getProgCommands(): Command | Array<Command> | undefined; protected getTargetTemperatureCommands(value: any): Command | Array<Command> | undefined; protected onStateChanged(name: any, value: any): void; protected computeStates(): void; } //# sourceMappingURL=SomfyHeatingTemperatureInterface.d.ts.map