forked from PWNAGERobotics/ScoutingPASS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CU_Pit_config.js
106 lines (106 loc) · 2.14 KB
/
CU_Pit_config.js
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
var config_data = `
{
"title": "Scouting PASS 2023",
"page_title": "Charged Up",
"pitConfig": "true",
"prematch": [
{ "name": "Team Number",
"code": "t",
"type": "number"
},
{ "name": "Width",
"code": "wid",
"type": "number",
"defaultValue": "0"
},
{ "name": "Weight",
"code": "wei",
"type": "number",
"defaultValue": "0"
},
{ "name": "Drivetrain",
"code": "drv",
"type": "radio",
"choices": {
"s": "Swerve<br>",
"w": "West Coast/Tank<br>",
"b": "Butterfly/Grashopper<br>",
"m": "Mechanum<br>",
"o": "Other"
},
"defaultValue": "o"
},
{ "name": "Other Drivetrain",
"code": "odt",
"type": "text",
"size": 20,
"maxSize": 50
},
{ "name": "Swerve Ratio",
"code": "sr",
"type": "radio",
"choices": {
"1": "L1 (8.14:1)<br>",
"2": "L2 (6.75:1)<br>",
"3": "L3 (6.12:1)<br>",
"4": "L4 (5.14:1)<br>",
"o": "Other ratio (put in comments)<br>",
"x": "Not Swerve"
},
"defaultValue":"x"
},
{ "name": "Drivetrain Motor",
"code": "mot",
"type": "radio",
"choices": {
"n": "Neo<br>",
"f": "Falcon<br>",
"c": "CIM<br>",
"x": "Other<br>"
},
"defaultValue":"x"
},
{ "name": "# of Batteries",
"code": "nob",
"type": "number"
},
{ "name": "Floor pickup Cones",
"code": "fco",
"type": "bool"
},
{ "name": "Floor pickup Cubes",
"code": "fcu",
"type": "bool"
},
{ "name": "Cross Charging Station",
"code": "ccs",
"type": "bool"
},
{ "name": "Autos",
"code": "aut",
"type": "text",
"size": 20,
"maxSize": 250
},
{ "name": "Scouting Method /<br>Program (ScoutingPASS?)",
"code": "sct",
"type": "text",
"size": 20,
"maxSize": 250
},
{ "name": "Comments",
"code": "co",
"type": "text",
"size": 20,
"maxSize": 250
}
],
"auton": [
],
"teleop": [
],
"endgame": [
],
"postmatch": [
]
}`;