-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpit_scouting_config.json
More file actions
231 lines (231 loc) · 6.57 KB
/
Copy pathpit_scouting_config.json
File metadata and controls
231 lines (231 loc) · 6.57 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
{
"title": "QRScout",
"page_title": "Reefscape",
"delimiter": "\t",
"teamNumber": 449,
"theme": {
"light": {
"background": "0 0% 100%",
"foreground": "0 0% 3.9%",
"card": "0 0% 100%",
"card_foreground": "0 0% 3.9%",
"popover": "0 0% 100%",
"popover_foreground": "0 0% 3.9%",
"primary": "1 100% 33%",
"primary_foreground": "0 85.7% 97.3%",
"secondary": "0 0% 96.1%",
"secondary_foreground": "0 0% 9%",
"muted": "0 0% 96.1%",
"muted_foreground": "0 0% 45.1%",
"accent": "0 0% 96.1%",
"accent_foreground": "0 0% 9%",
"destructive": "195 56% 79%",
"destructive_foreground": "0 0% 98%",
"border": "0 0% 89.8%",
"input": "0 0% 0%",
"ring": "354.44 71.3% 47.9%",
"chart_1": "12 76% 61%",
"chart_2": "173 58% 39%",
"chart_3": "197 37% 24%",
"chart_4": "43 74% 66%",
"chart_5": "27 87% 67%"
},
"dark": {
"background": "0 0% 3.9%",
"foreground": "0 0% 98%",
"card": "0 0% 3.9%",
"card_foreground": "0 0% 98%",
"popover": "0 0% 3.9%",
"popover_foreground": "0 0% 98%",
"primary": "1 100% 33%",
"primary_foreground": "0 85.7% 97.3%",
"secondary": "0 0% 14.9%",
"secondary_foreground": "0 0% 98%",
"muted": "0 0% 14.9%",
"muted_foreground": "0 0% 63.9%",
"accent": "0 0% 14.9%",
"accent_foreground": "0 0% 98%",
"destructive": "195 100% 34%",
"destructive_foreground": "0 0% 98%",
"border": "0 0% 14.9%",
"input": "0 0% 50%",
"ring": "354.44 71.3% 47.9%",
"chart_1": "220 70% 50%",
"chart_2": "160 60% 45%",
"chart_3": "30 80% 55%",
"chart_4": "280 65% 60%",
"chart_5": "340 75% 55%"
}
},
"sections": [
{
"name": "Pit Scouting",
"fields": [
{
"title": "Scouter Initials",
"description": "Enter the initials of the scouter.",
"type": "text",
"required": true,
"code": "scouter",
"formResetBehavior": "preserve",
"defaultValue": ""
},
{
"title": "Team Number",
"description": "The team number of the robot you're scouting.",
"type": "number",
"required": true,
"code": "teamNumber",
"formResetBehavior": "reset",
"defaultValue": 0,
"min": 0,
"max": 19999
},
{
"title": "Team Name",
"description": "What the name of their robot is(very important trust)",
"type": "text",
"required": true,
"code": "Tname",
"formResetBehavior": "reset",
"defaultValue": "",
"min": 0,
"max": 40
},
{
"title": "Robot Name",
"description": "What the name of their robot is(very important trust)",
"type": "text",
"required": true,
"code": "Rname",
"formResetBehavior": "reset",
"defaultValue": "",
"min": 0,
"max": 40
}
]
},
{
"name": "Measurements",
"fields": [
{
"title": "Width",
"description": "Width of the robot in inches",
"type": "number",
"required": true,
"code": "width",
"formResetBehavior": "reset",
"defaultValue": 0,
"min": 0,
"max": 120
},
{
"title": "Length",
"description": "Length of the robot in inches",
"type": "number",
"required": true,
"code": "length",
"formResetBehavior": "reset",
"defaultValue": 0,
"min": 0,
"max": 120
},
{
"title": "Height",
"description": "Height of the robot in inches",
"type": "number",
"required": true,
"code": "height",
"formResetBehavior": "reset",
"defaultValue": 0,
"min": 0,
"max": 120
},
{
"title": "Weight",
"description": "Weight of the robot in pounds without battery and bumpers",
"type": "number",
"required": true,
"code": "weight",
"formResetBehavior": "reset",
"defaultValue": 0,
"min": 0,
"max": 115
}
]
},
{
"name": "Other Robot Stuff",
"fields": [
{
"title": "Drive Train type",
"description": "What kind of drive train their robot uses",
"type": "select",
"required": true,
"code": "driveType",
"formResetBehavior": "reset",
"defaultValue": "swerve",
"choices": {
"swerve": "Swerve",
"tank": "Tank",
"mechanum": "Mechanum"
}
},
{
"title": "Drive Train Motor",
"description": "What motors they use in their drive train",
"type": "multi-select",
"required": true,
"code": "driveMotor",
"formResetBehavior": "reset",
"choices": {
"kraken": "Krakens",
"neoVortex": "Neo Votex",
"falcon": "Falcon 500",
"thrifty": "Thrifty Bot",
"neo": "Neo"
}
},
{
"title": "Coral Pickup Locations",
"description": "Where the robot is able to get coral from",
"type": "select",
"required": true,
"code": "corPickup",
"formResetBehavior": "reset",
"defaultValue": "",
"choices": {
"neither": "Neither",
"ground": "Ground Intake",
"station": "Coral Station",
"both": "Both"
}
},
{
"title": "Algae Pickup Locations",
"description": "Where the robot is able to get algae from(leave blank if they cannot pick up algae)",
"type": "multi-select",
"required": false,
"code": "algPickup",
"formResetBehavior": "reset",
"choices": {
"ground": "Ground Intake",
"low": "Algae placed lower on the reef",
"high": "Algae place higher on the reef"
}
},
{
"title": "Comments",
"description": "Any other Comments about their robot that wouldn't show up in the data already",
"type": "text",
"required": false,
"code": "comments",
"formResetBehavior": "reset",
"defaultValue": "",
"min": 0,
"max": 300
}
]
}
]
}