homebridge-freeathome-local-api
Version:
Control your free@home setup using the local API provided by your System Access Point
24 lines • 1.05 kB
TypeScript
import { InOutPut } from "freeathome-local-api-client";
import { CharacteristicValue } from "homebridge";
/**
* The current version of the application.
*
* This constant is used to indicate the build or release version of the app.
* In development environments, it may be set to "DEBUG".
*/
export declare const APP_VERSION = "v1.22.0-3fa25ce";
/**
* 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