UNPKG

homebridge-fenix-tft-wifi

Version:

Homebridge plugin which adds a Fenix TFT WiFi thermostat as HomeKit device.

14 lines 653 B
import TokenManager from '../TokenManager'; import { ThermostatMode } from '../Enum/ThermostatMode'; import ThermostatData from '../DTO/ThermostatData'; export default class ThermostatApi { private readonly uuid; private readonly tokenManager; private axiosClient; constructor(uuid: string, tokenManager: TokenManager); private readonly ThermostatApiUrl; getInformation(): Promise<ThermostatData>; changeMode(mode: ThermostatMode): Promise<import("axios").AxiosResponse<any, any>>; setTemperature(thermostat: ThermostatData): Promise<import("axios").AxiosResponse<any, any>>; } //# sourceMappingURL=ThermostatApi.d.ts.map