homebridge-tahoma-fork
Version:
Sample Platform plugin for TaHoma and Cozytouch services (Somfy,Atlantic,Thermor,Sauter): https://github.com/dubocr/homebridge-tahoma
16 lines • 723 B
TypeScript
import { Characteristic } from 'homebridge';
import { Command } from 'overkiz-client';
import Mapper from '../Mapper';
export default class GarageDoor extends Mapper {
protected expectedStates: string[];
protected currentState: Characteristic | undefined;
protected targetState: Characteristic | undefined;
protected cyclic: any;
protected cycleDuration: any;
protected applyConfig(config: any): void;
protected registerMainService(): import("homebridge").Service;
protected getTargetCommands(value: any): Command;
protected setTargetState(value: any): Promise<void>;
protected onStateChanged(name: string, value: any): void;
}
//# sourceMappingURL=GarageDoor.d.ts.map