forked from FRC2713/QRScout
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update config and fix line break issue
- Loading branch information
Showing
4 changed files
with
183 additions
and
3 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
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,180 @@ | ||
{ | ||
"$schema": "../../schema.json", | ||
"title": "4096 Scout", | ||
"page_title": "Crescendo", | ||
"sections": [ | ||
{ | ||
"name": "Prematch", | ||
"fields": [ | ||
{ | ||
"title": "Scouter Name", | ||
"type": "text", | ||
"required": true, | ||
"code": "scouter" | ||
}, | ||
{ | ||
"title": "Match Number", | ||
"type": "number", | ||
"required": true, | ||
"code": "matchNumber" | ||
}, | ||
{ | ||
"title": "Driver Station", | ||
"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" | ||
}, | ||
"defaultValue": "R1" | ||
}, | ||
{ | ||
"title": "Team Number", | ||
"type": "number", | ||
"required": true, | ||
"code": "teamNumber" | ||
}, | ||
{ | ||
"title": "Starting Location", | ||
"type": "select", | ||
"required": true, | ||
"code": "Starting Location", | ||
"choices": { | ||
"1": "By Amp (Amp Side)", | ||
"2": "Aligned with Speaker (Middle)", | ||
"3": "Center of Field (Opposite Amp Side)", | ||
"0": "SELECT" | ||
}, | ||
"defaultValue": "0" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Autonomous", | ||
"fields": [ | ||
{ | ||
"title": "Mobility?", | ||
"type": "boolean", | ||
"defaultValue": false, | ||
"required": false, | ||
"code": "Mved" | ||
}, | ||
{ | ||
"code": "auamp", | ||
"title": "Amp Scored", | ||
"type": "counter", | ||
"defaultValue": 0, | ||
"min": 0, | ||
"required": false | ||
}, | ||
{ | ||
"code": "auampm", | ||
"title": "Amp Missed", | ||
"type": "counter", | ||
"defaultValue": 0, | ||
"min": 0, | ||
"required": false | ||
}, | ||
{ | ||
"code": "ausc", | ||
"title": "Speaker Scored", | ||
"type": "counter", | ||
"defaultValue": 0, | ||
"min": 0, | ||
"required": false | ||
}, | ||
{ | ||
"code": "auskpm", | ||
"title": "Speaker Missed", | ||
"type": "counter", | ||
"defaultValue": 0, | ||
"min": 0, | ||
"required": false | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Teleop", | ||
"fields": [ | ||
{ | ||
"code": "tamps", | ||
"title": "Amp Scored", | ||
"type": "counter", | ||
"defaultValue": 0, | ||
"min": 0, | ||
"required": false | ||
}, | ||
{ | ||
"code": "tampm", | ||
"title": "Amp Missed", | ||
"type": "counter", | ||
"defaultValue": 0, | ||
"min": 0, | ||
"required": false | ||
}, | ||
{ | ||
"code": "tsc", | ||
"title": "Speaker Scored", | ||
"type": "counter", | ||
"defaultValue": 0, | ||
"min": 0, | ||
"required": false | ||
}, | ||
{ | ||
"code": "tsm", | ||
"title": "Speaker Missed", | ||
"type": "counter", | ||
"defaultValue": 0, | ||
"min": 0, | ||
"required": false | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Endgame", | ||
"fields": [ | ||
{ | ||
"title": "End Position", | ||
"type": "select", | ||
"required": true, | ||
"code": "epo", | ||
"choices": { | ||
"0": "No Climb", | ||
"1": "Parked", | ||
"2": "Onstage" | ||
}, | ||
"defaultValue": "0" | ||
}, | ||
{ | ||
"code": "cn", | ||
"title": "Notes in Trap", | ||
"type": "counter", | ||
"defaultValue": 0, | ||
"min": 0, | ||
"required": false | ||
}, | ||
{ | ||
"title": "Harmony?", | ||
"type": "boolean", | ||
"defaultValue": false, | ||
"required": false, | ||
"code": "Mved" | ||
}, | ||
{ | ||
"code": "co", | ||
"title": "Additional Observations", | ||
"type": "text", | ||
"min": 0, | ||
"max": 50, | ||
"defaultValue": "", | ||
"required": false | ||
} | ||
] | ||
} | ||
] | ||
} |
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
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