-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstartstop.json
More file actions
50 lines (50 loc) · 1.11 KB
/
startstop.json
File metadata and controls
50 lines (50 loc) · 1.11 KB
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
{
"about": {
"name": "Sony VPL-PHZ51 Projector Control",
"version": "2.0",
"author": "Mia Hanson and Jerry Anderson"
},
"adapters": [
{
"id": "sony_projector_adapter",
"name": "Sony Projector Adapter",
"model": "GenericNetworkAdapter",
"ip": "tcp://10.0.37.63:53595",
"ports": [
{
"id": "projector_port",
"name": "Projector Control",
"methods": [
{
"id": "power",
"name": "Power",
"type": "actions",
"command": "power %\r\n",
"params": [
{
"id": "on",
"name": "Power On",
"value": "\"on\""
},
{
"id": "off",
"name": "Power Off",
"value": "\"off\""
}
]
}
]
}
]
}
],
"rules": {
"zr_meeting_started": [
"projector_port.power.on"
],
"zr_meeting_ended": [
"projector_port.power.off"
]
},
"styles": []
}