-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstartup-config.json.example
More file actions
120 lines (120 loc) · 3.83 KB
/
startup-config.json.example
File metadata and controls
120 lines (120 loc) · 3.83 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"fixtures": [
{
"id": "fixture_test",
"num_leds": 50,
"led_positions": [
{ "x": 0, "y": 0, "z": 0 },
{ "x": 0, "y": 1, "z": 0 },
{ "x": 0, "y": 2, "z": 0 },
{ "x": 0, "y": 3, "z": 0 },
{ "x": 0, "y": 4, "z": 0 },
{ "x": 0, "y": 5, "z": 0 },
{ "x": 0, "y": 6, "z": 0 },
{ "x": 0, "y": 7, "z": 0 },
{ "x": 0, "y": 8, "z": 0 },
{ "x": 0, "y": 0, "z": 0 },
{ "x": 0, "y": 10, "z": 0 },
{ "x": 0, "y": 11, "z": 0 },
{ "x": 0, "y": 12, "z": 0 },
{ "x": 0, "y": 13, "z": 0 },
{ "x": 0, "y": 14, "z": 0 },
{ "x": 0, "y": 15, "z": 0 },
{ "x": 0, "y": 16, "z": 0 },
{ "x": 0, "y": 17, "z": 0 },
{ "x": 0, "y": 18, "z": 0 },
{ "x": 0, "y": 19, "z": 0 },
{ "x": 0, "y": 20, "z": 0 },
{ "x": 0, "y": 21, "z": 0 },
{ "x": 0, "y": 22, "z": 0 },
{ "x": 0, "y": 23, "z": 0 },
{ "x": 0, "y": 24, "z": 0 },
{ "x": 0, "y": 25, "z": 0 },
{ "x": 0, "y": 26, "z": 0 },
{ "x": 0, "y": 27, "z": 0 },
{ "x": 0, "y": 28, "z": 0 },
{ "x": 0, "y": 29, "z": 0 },
{ "x": 0, "y": 30, "z": 0 },
{ "x": 0, "y": 31, "z": 0 },
{ "x": 0, "y": 32, "z": 0 },
{ "x": 0, "y": 33, "z": 0 },
{ "x": 0, "y": 34, "z": 0 },
{ "x": 0, "y": 35, "z": 0 },
{ "x": 0, "y": 36, "z": 0 },
{ "x": 0, "y": 37, "z": 0 },
{ "x": 0, "y": 38, "z": 0 },
{ "x": 0, "y": 39, "z": 0 },
{ "x": 0, "y": 40, "z": 0 },
{ "x": 0, "y": 41, "z": 0 },
{ "x": 0, "y": 42, "z": 0 },
{ "x": 0, "y": 43, "z": 0 },
{ "x": 0, "y": 44, "z": 0 },
{ "x": 0, "y": 45, "z": 0 },
{ "x": 0, "y": 46, "z": 0 },
{ "x": 0, "y": 47, "z": 0 },
{ "x": 0, "y": 48, "z": 0 },
{ "x": 0, "y": 49, "z": 0 }
]
}
],
"animations": [
{
"id": "animation_strandtest",
"shader_id": "test",
"target_id": {
"Fixture": "fixture_test"
}
}
],
"auxiliaries": [
{
"type": "F32",
"id": "strandtest_step_per_sec",
"initial_value": 1.0,
"name": "(StrandTest) Steps Per Second"
},
{
"type": "F32",
"id": "strandtest_r",
"initial_value": 0.2,
"name": "(StrandTest) Red Value"
},
{
"type": "F32",
"id": "strandtest_g",
"initial_value": 0,
"name": "(StrandTest) Green Value"
},
{
"type": "F32",
"id": "strandtest_b",
"initial_value": 0.5,
"name": "(StrandTest) Blue Value"
}
],
"devices": [
{
"id": "device_test_udp",
"config": {
"LEDDataOutput": {
"UDP": {
"name": "test_udp",
"host": "127.0.0.1",
"port": 3663
}
}
}
}
],
"fixtures_to_device": {
"fixture_test": "device_test_udp"
},
"animation_auxiliary_sources": {
"animation_strandtest": [
"strandtest_step_per_sec",
"strandtest_r",
"strandtest_g",
"strandtest_b"
]
}
}