UNPKG

homebridge-freeathome-local-api

Version:

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

17 lines 806 B
import { InOutPut } from "freeathome-local-api-client"; import { CharacteristicValue } from "homebridge"; /** * In the local API the system access point UUID is always an empty UUID. Could be extended later to also support the cloud API. */ export declare const EmptyGuid = "00000000-0000-0000-0000-000000000000"; /** * Gets the name of the data point with the specified pairing ID. * @param datapoints The data points * @param pairingID The pairing ID. * @returns The data point name or null, if no data point was found for the specified pairing ID. */ export declare function getDataPointByPairingID(datapoints: { [key: string]: InOutPut; } | undefined, pairingID: number): string; export declare function convertToString(value: CharacteristicValue): string; //# sourceMappingURL=util.d.ts.map