-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExterior.json
47 lines (47 loc) · 1.12 KB
/
Exterior.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
{
"accessory": "HttpAdvancedAccessory",
"service": "GarageDoorOpener",
"name": "Exterior",
"forceRefreshDelay": 5,
"username": "YOUR_HOMEBRIDGE_USERNAME",
"password": "YOUR_HOMEBRIDGE_PASSWORD",
"debug": false,
"urls": {
"getCurrentDoorState": {
"url": "http://YOUR_RASPBERRY_PI_PICOW_IP_ADDRESS/?gsExterior",
"mappers": [
{
"type": "jpath",
"parameters": {
"jpath": "$.currentState",
"index": 0
}
}
]
},
"getTargetDoorState": {
"url": "http://YOUR_RASPBERRY_PI_PICOW_IP_ADDRESS/?gsExterior",
"mappers": [
{
"type": "jpath",
"parameters": {
"jpath": "$.targetState",
"index": 0
}
}
]
},
"setTargetDoorState": {
"url": "http://YOUR_RASPBERRY_PI_PICOW_IP_ADDRESS/?${value==0?'oExterior':'cExterior'}",
"mappers": [
{
"type": "jpath",
"parameters": {
"jpath": "$.targetState",
"index": 0
}
}
]
}
}
}