Skip to content

Commit

Permalink
Merge pull request #41 from FRC2713/dcmp_default_config
Browse files Browse the repository at this point in the history
add new default config
  • Loading branch information
tytremblay authored Apr 2, 2024
2 parents df5731c + aaa7c2b commit 57d9bb9
Showing 1 changed file with 45 additions and 63 deletions.
108 changes: 45 additions & 63 deletions config/2024/config.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"$schema": "../schema.json",
"title": "QRScout",
"page_title": "Crescendo",
"sections": [
{
"name": "Prematch",
"preserveDataOnReset": true,
"fields": [
{
"title": "Scouter Initials",
"type": "text",
"required": true,
"code": "scouter",
"preserveDataOnReset": true
"code": "scouter"
},
{
"title": "Match Number",
"type": "number",
"required": true,
"code": "matchNumber",
"preserveDataOnReset": true,
"autoIncrementOnReset": true
},
{
Expand All @@ -33,8 +33,7 @@
"B2": "Blue 2",
"B3": "Blue 3"
},
"defaultValue": "R1",
"preserveDataOnReset": true
"defaultValue": "R1"
},
{
"title": "Team Number",
Expand All @@ -43,11 +42,16 @@
"code": "teamNumber"
},
{
"title": "Human Player at Amp",
"type": "boolean",
"required": false,
"defaultValue": false,
"code": "humanPlayer"
"title": "Starting Position",
"type": "select",
"required": true,
"code": "Prsp",
"choices": {
"R1": "Source",
"R2": "Middle",
"R3": "Amp"
},
"defaultValue": ""
},
{
"title": "No Show",
Expand All @@ -61,6 +65,13 @@
{
"name": "Autonomous",
"fields": [
{
"title": "Moved?",
"type": "boolean",
"defaultValue": false,
"required": false,
"code": "Mved"
},
{
"code": "ausc",
"title": "Speaker Scored",
Expand All @@ -78,33 +89,34 @@
"required": false
},
{
"code": "a_gp_collect",
"title": "Game Pieces Collected",
"code": "a_gp_Path",
"title": "Auto Game Piece Path",
"type": "select",
"multiSelect": true,
"choices": {
"1": "Preload",
"2": "Floor 1",
"3": "Floor 2",
"4": "Floor 3",
"5": "Floor 4",
"6": "Floor 5",
"7": "Floor 6",
"8": "Floor 7"
"1": "Speaker 3 (Source Side)",
"2": "Speaker 2 (Middle)",
"3": "Speaker 1 (Amp Side)",
"4": "Midline 5 (Source Edge)",
"5": "Midline 4",
"6": "Midline 3 (Middle)",
"7": "Midline 2",
"8": "Midline 1 (Amp Edge)"
}
},
{
"code": "auf",
"title": "Auto Foul",
"type": "counter",
"defaultValue": 0,
"min": 0,
"required": false
}
]
},
{
"name": "Teleop",
"fields": [
{
"code": "tcoop",
"title": "Coopertition",
"type": "boolean",
"defaultValue": false,
"required": false
},
{
"code": "tamps",
"title": "Amp Scored",
Expand All @@ -113,14 +125,6 @@
"min": 0,
"required": false
},
{
"code": "tampm",
"title": "Amp Missed",
"type": "counter",
"defaultValue": 0,
"min": 0,
"required": false
},
{
"code": "tsc",
"title": "Speaker Scored",
Expand All @@ -130,8 +134,8 @@
"required": false
},
{
"code": "tsm",
"title": "Speaker Missed",
"code": "tfs",
"title": "Feeder Shots",
"type": "counter",
"defaultValue": 0,
"min": 0,
Expand Down Expand Up @@ -164,25 +168,11 @@
"code": "epo",
"choices": {
"No": "No Climb",
"Fc": "Failed Climb",
"P": "Parked",
"Os": "Onstage",
"Sl": "Spotlight"
},
"defaultValue": "No Climb"
},
{
"title": "Harmony",
"type": "select",
"required": true,
"code": "harm",
"choices": {
"Not": "Not Completed",
"Fir": "First on Chain",
"Sec": "Second on Chain",
"Thir": "Third on Chain"
"Hm": "Harmony"
},
"defaultValue": "Not Completed"
"defaultValue": "No"
}
]
},
Expand Down Expand Up @@ -215,15 +205,8 @@
"required": false
},
{
"code": "d",
"title": "Died",
"type": "boolean",
"defaultValue": false,
"required": false
},
{
"code": "to",
"title": "Tipped Over",
"code": "dto",
"title": "Died/Tipped Over",
"type": "boolean",
"defaultValue": false,
"required": false
Expand All @@ -240,7 +223,6 @@
"Red": "Red Card"
}
},

{
"code": "co",
"title": "Comments",
Expand Down

0 comments on commit 57d9bb9

Please sign in to comment.