Skip to content

Commit

Permalink
Added Note Passing, High Notes and Parts Fell Off tracking.
Browse files Browse the repository at this point in the history
  • Loading branch information
CoachPrash committed Mar 29, 2024
1 parent 19628d4 commit 7c4e4b8
Showing 1 changed file with 38 additions and 13 deletions.
51 changes: 38 additions & 13 deletions config/2024/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,23 @@
"title": "Match Number",
"type": "number",
"required": true,
"code": "matchNumber"
"code": "matchNumber",
"preserveDataOnReset": true
},
{
"title": "Robot",
"type": "select",
"required": true,
"code": "robot",
"choices": {
"R1": "Red 1",
"R2": "Red 2",
"R3": "Red 3",
"B1": "Blue 1",
"B2": "Blue 2",
"B3": "Blue 3"
"RL": "Red Low",
"RM": "Red Mid",
"RH": "Red High",
"BL": "Blue Low",
"BM": "Blue Mid",
"BH": "Blue High"
},
"defaultValue": "R1",
"defaultValue": "RL",
"preserveDataOnReset": true
},
{
Expand Down Expand Up @@ -206,9 +207,17 @@
"min": 0,
"required": false
},
{
"code": "tnp",
"title": "Teleop Note Passing",
"type": "counter",
"defaultValue": 0,
"min": 0,
"required": false
},
{
"code": "cn",
"title": "Note in Trap?",
"title": "Notes in Trap",
"type": "counter",
"defaultValue": 0,
"min": 0,
Expand All @@ -219,13 +228,22 @@
"title": "Teleop Foul",
"type": "counter",
"defaultValue": 0,
"min": 0,
"required": false
}
]
},
{
"name": "Endgame",
"fields": [
{
"code": "hn",
"title": "High Notes Made",
"type": "counter",
"defaultValue": 0,
"min": 0,
"required": false
},
{
"title": "End Position",
"type": "select",
Expand All @@ -235,8 +253,8 @@
"No": "No Climb",
"Fc": "Failed Climb",
"P": "Parked",
"Os": "Onstage",
"Sl": "Spotlight"
"Os": "Onstage (Climbed)",
"Sl": "Spotlight (Climbed + Note)"
},
"defaultValue": "No Climb"
},
Expand Down Expand Up @@ -289,8 +307,8 @@
"required": false
},
{
"code": "d",
"title": "Died",
"code": "pf",
"title": "Parts fell off",
"type": "boolean",
"defaultValue": false,
"required": false
Expand All @@ -302,6 +320,13 @@
"defaultValue": false,
"required": false
},
{
"code": "d",
"title": "Died",
"type": "boolean",
"defaultValue": false,
"required": false
},
{
"code": "yc",
"title": "Yellow/Red Card",
Expand Down

0 comments on commit 7c4e4b8

Please sign in to comment.