Skip to content

Commit

Permalink
Merge pull request #74 from fuddster/main
Browse files Browse the repository at this point in the history
Add pit scouting ability
  • Loading branch information
fuddster authored Feb 19, 2023
2 parents 154f292 + 00b9d04 commit e9d9056
Show file tree
Hide file tree
Showing 7 changed files with 584 additions and 63 deletions.
89 changes: 89 additions & 0 deletions 2023/CU_Pit_config.js
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 modified Excel/2023 Excel Skeleton.xlsm
Binary file not shown.
Loading

0 comments on commit e9d9056

Please sign in to comment.