forked from kubovy/elko-ws-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json.dist
74 lines (74 loc) · 2.9 KB
/
config.json.dist
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
{
"ws": "ws://[ELKO-EP-HOST]/api/ws",
"url": "http://[ELKO-EP-HOST]",
"prefix": "/api/devices/",
"regex": "http://[ELKO-EP-HOST]/api/devices/(.*)",
"suffix": "/state",
"devices": {
"[ELKO-ID]": {
"item": "[OPENHAB-SWITCH-ITEM]",
"transform": "state ? 'ON' : 'OFF'",
"get": {
"method": "GET",
"url": "http://[ELKO-EP-HOST]/api/devices/{id}/state",
"headers": {},
"path": "$.on"
},
"check": {
"method": "GET",
"url": "http://[OPENHAB-HOST]/rest/items/{item}",
"headers": { "Accept": "application/json" },
"path": "$.state"
},
"update": {
"method": "POST",
"url": "http://[OPENHAB-HOST]/rest/items/{item}",
"headers": { "Content-Type": "text/plain", "Accept": "application/json" },
"body": "state"
}
},
"[ELKO-ID]": {
"item": "[OPENHAB-DIMMER-ITEM]",
"transform": "state + ''",
"get": {
"method": "GET",
"url": "http://[ELKO-EP-HOST]/api/devices/{id}/state",
"headers": {},
"path": "$.brightness"
},
"check": {
"method": "GET",
"url": "http://[OPENHAB-HOST]/rest/items/{item}",
"headers": { "Accept": "application/json" },
"path": "$.state"
},
"update": {
"method": "POST",
"url": "http://[OPENHAB-HOST]/rest/items/{item}",
"headers": { "Content-Type": "text/plain", "Accept": "application/json" },
"body": "state"
}
},
"[ELKO-ID]": {
"item": "[OPENHAB-COLOR-ITEM]",
"transform": "RGB2HSV(state)",
"get": {
"method": "GET",
"url": "http://[ELKO-EP-HOST]/api/devices/{id}/state",
"headers": {}
},
"check": {
"method": "GET",
"url": "http://[OPENHAB-HOST]/rest/items/{item}",
"headers": { "Accept": "application/json" },
"path": "$.state"
},
"update": {
"method": "POST",
"url": "http://[OPENHAB-HOST]/rest/items/{item}",
"headers": { "Content-Type": "text/plain", "Accept": "application/json" },
"body": "state"
}
}
}
}