-
Notifications
You must be signed in to change notification settings - Fork 473
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from fuddster/main
Add pit scouting ability
- Loading branch information
Showing
7 changed files
with
584 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
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<br>", | ||
"2": "L2<br>", | ||
"3": "L3<br>", | ||
"4": "L4<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": "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 | ||
} | ||
], | ||
"auton": [ | ||
], | ||
"teleop": [ | ||
], | ||
"endgame": [ | ||
], | ||
"postmatch": [ | ||
] | ||
}`; |
Binary file not shown.
Oops, something went wrong.