-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json-example
97 lines (97 loc) · 2.09 KB
/
config.json-example
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
{
"setup": {
"powercell": {
"pin": "GPIO0",
"num_of_leds": 15,
"brightness": 255,
"speed": 10
},
"cycltron": {
"pin": "GPIO5",
"num_of_leds": 40,
"brightness": 255,
"speed": 50
},
"vent": {
"pin": "GPIO4",
"num_of_leds": 10,
"brightness": 255,
"speed": 10
}
},
"state": {
"startup": {
"powercell_pattern": "standard",
"duration": 5,
"vent": "off"
},
"idle": {
"cyclotron_speed": "random",
"vent": "off"
},
"firing": {
"duration": 15,
"automatic_venting": true,
"venting_time": 5,
"vent": "off"
},
"venting": {
"powercell_pattern": "static",
"cyclotron_pattern": "fadeout",
"duration": 5
},
"restart": {
"repeat_startup": false,
"duration": 0,
"vent": "off"
},
"shutdown": {
"powercell_pattern": "countdown",
"cyclotron": "slowdown",
"duration": 5,
"vent": "off"
}
},
"modes": {
"standard": {
"powercell_color": "blue",
"powercell_pattern": "scroll",
"cyclotron_color": "red",
"cyclotron_pattern": "smooth",
"vent_color": "white",
"pattern": "strobe"
},
"slime": {
"powercell_color": "green",
"powercell_pattern": "level",
"cyclotron_color": "green",
"cyclotron_pattern": "fluid",
"vent_color": "green",
"vent_pattern": "spin"
},
"meson": {
"powercell_color": "yellow",
"powercell_pattern": "level",
"cyclotron_color": "yellow",
"cyclotron_pattern": "fade",
"vent_color": "red",
"vent_pattern": "glow"
},
"stasis": {
"powercell_color": "blue",
"powercell_pattern": "level",
"cyclotron_color": "blue",
"pattern": "electric",
"vent_color": "white",
"vent_pattern": "glow"
},
"party":{
"powercell_color": "rainbow",
"powercell_pattern": "strobe",
"cyclotron_color": "rainbow",
"pattern": "smooth",
"vent_color": "rainbow",
"vent_pattern": "spin"
}
}
}