-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
61 lines (61 loc) · 1.31 KB
/
config.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
{
"osc_server": {
"listen_ip": "192.168.50.248",
"listen_port": 53000
},
"flask_server": {
"ip": "192.168.50.248",
"port": 5009
},
"targets": [
{
"name": "cogs",
"type": "osc",
"ip": "192.168.50.248",
"port": 12097
},
{
"name": "Quiz1",
"type": "tcp",
"ip": "192.168.50.232",
"port": 5000,
"url": ""
}
],
"routes": [
{
"from": {
"protocol": "http",
"endpoint": "/send_osc"
},
"to": {
"target_name": "cogs"
}
},
{
"from": {
"protocol": "tcp",
"ip": "192.168.50.248",
"port": 57676
},
"to": {
"target_name": "cogs"
}
},
{
"from": {
"protocol": "osc",
"address_pattern": "/quiz1",
"values": [
"GameID",
"Level1",
"Level2",
"Level3"
]
},
"to": {
"target_name": "Quiz1"
}
}
]
}