forked from Controlhaus/lutron-integration-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
catch-connect-service.json
103 lines (103 loc) · 2.89 KB
/
catch-connect-service.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"version": "0.1.0",
"friendlyName": "Lutron Integration Protocol",
"serviceName": "lutron-integration-protocol",
"manufacturer": "Lutron",
"model": "multiple",
"buildUrls": {
"linux": "https://s3.eu-central-1.amazonaws.com/catch-connect-services/577820df-5f19-43ed-baca-8c0dfcb4eb17-0.0.1-linux.ccs",
"mac": "https://s3.eu-central-1.amazonaws.com/catch-connect-services/577820df-5f19-43ed-baca-8c0dfcb4eb17-0.0.1-mac.ccs",
"armv7": "https://s3.eu-central-1.amazonaws.com/catch-connect-services/577820df-5f19-43ed-baca-8c0dfcb4eb17-0.0.1-armv7.ccs",
"windows": "https://s3.eu-central-1.amazonaws.com/catch-connect-services/577820df-5f19-43ed-baca-8c0dfcb4eb17-0.0.1-win.ccs.exe"
},
"parameters": [
{
"parameter": "ipAddress",
"friendlyName": "IP Address",
"type": "string",
"default": "",
"required": true,
"placeholder": "Enter the IP address or host name.",
"tooltip": ""
},
{
"parameter": "port",
"friendlyName": "Port",
"type": "number",
"default": 23,
"required": true,
"placeholder": "Optional TCP port (defaults to 4998).",
"tooltip": ""
},
{
"parameter": "login",
"friendlyName": "Login",
"type": "string",
"default": "lutron",
"required": true,
"placeholder": "Enter the login or username.",
"tooltip": ""
},
{
"parameter": "password",
"friendlyName": "Password",
"type": "password",
"default": "integration",
"required": true,
"placeholder": "Enter the password.",
"tooltip": ""
},
{
"parameter": "heartbeatInterval",
"friendlyName": "Heartbeat Interval",
"type": "string",
"default": "10000",
"required": true,
"placeholder": "Enter the heartbeat interval.",
"tooltip": "The interval between sending heartbeat messages in milliseconds. The heartbeat is used to detect unexpected disconnects and automatically reconnect."
}
],
"commands": [
{
"friendlyName": "Connect",
"editable": false,
"pattern": "connect",
"useHex": false,
"endWith": "n",
"descriptions": [
{
"title": "Description",
"body": "Connects the socket. This command is sent automatically at startup."
}
]
},
{
"friendlyName": "Close",
"editable": false,
"pattern": "close",
"useHex": false,
"endWith": "n",
"descriptions": [
{
"title": "Description",
"body": "Closes the socket."
}
]
},
{
"friendlyName": "Your Command",
"editable": true,
"pattern": "The command to send",
"useHex": false,
"endWith": "n",
"descriptions": [
{
"title": "Description",
"body": "Sends COMMAND directly to the device."
}
]
}
],
"responses": [
]
}