homebridge-yale-sync-keypad
Version:
A pluign to connect to your Yale Sync Alarm account and allow you to change the alarm state using Homekit. Motion sensors are not supported, due to the fact that they are only active when the alarm is set to away.
13 lines (12 loc) • 542 B
TypeScript
/**
* An async wait function that will wait for the specified number of milliseconds
*/
export declare function wait(ms: number): Promise<unknown>;
/**
* Combine the plugin info with the MAC Address of the panel to provide a good seed for a UUID
* @param id The MAC Address of the panel
* @returns The name to use to generate a UUID
*/
export declare function panelUUID(id: string): string;
export declare function checkNetwork(): Promise<boolean>;
export declare function checkNetworkResponse(): Promise<NodeJS.ErrnoException | null>;