lib-comfoair
Version:
Library to communicate with Zehnder ComfoAirQ ventilation unit through the ComfoControl gateway
58 lines (57 loc) • 1.1 kB
TypeScript
/**
* Default ComfoAir Client UUID used by the App.
*/
export declare const CLIENT_UUID = "20200428000000000000000009080407";
/**
* The default port the LAN-C gateway listens on for client connections (TCP)
*/
export declare const GATEWAY_PORT = 56747;
/**
* The default port the LAN-C gateway listens on for discovery messages (UDP)
*/
export declare const DISCOVERY_PORT = 56747;
/**
* Enum representing different product types.
*/
export declare enum NodeProductType {
/**
* The ComfoAirQ ventilation unit.
*/
ComfoAirQ = 1,
/**
* ComfoSense C.
*/
ComfoSense = 2,
/**
* ComfoSwitch C.
*/
ComfoSwitch = 3,
/**
* OptionBox.
*/
OptionBox = 4,
/**
* ComfoConnect LAN C.
*/
ZehnderGateway = 5,
/**
* ComfoCool Q600.
*/
ComfoCool = 6,
/**
* ComfoConnect KNX C.
*/
KNXGateway = 7,
/**
* Service Tool.
*/
ServiceTool = 8,
/**
* Production test tool.
*/
PTTool = 9,
/**
* Design verification test tool.
*/
DVTTool = 10
}