UNPKG

homebridge-freeathome-local-api

Version:

Control your free@home setup using the local API provided by your System Access Point

20 lines 1.06 kB
import { PlatformAccessory } from "homebridge"; import { FreeAtHomeAccessory } from "./freeAtHomeAccessory.js"; import { FreeAtHomeContext } from "./freeAtHomeContext.js"; import { FreeAtHomeHomebridgePlatform } from "./platform.js"; /** A temperature sensor integrated in the free&#64;home weather station. */ export declare class WeatherStationTemperatureSensorAccessory extends FreeAtHomeAccessory { readonly platform: FreeAtHomeHomebridgePlatform; readonly accessory: PlatformAccessory<FreeAtHomeContext>; private readonly service; private currentTemperature; private readonly pdCurrentTemperature; /** * Constructs a new temperature sensor accessory instance. * @param platform The free&#64;home Homebridge platform controlling the accessory * @param accessory The platform accessory. */ constructor(platform: FreeAtHomeHomebridgePlatform, accessory: PlatformAccessory<FreeAtHomeContext>); updateDatapoint(datapoint: string, value: string): void; } //# sourceMappingURL=temperatureSensorAccessory.d.ts.map