mirror of
https://github.com/Team4388/RidgeScout.git
synced 2026-06-09 00:37:59 -06:00
Create fields for testing
This commit is contained in:
@@ -14,7 +14,6 @@ Ridgebotics 2025 scouting app in Android
|
|||||||
- Improve the code scanning progress indicator. It has a rounding error, I think.
|
- Improve the code scanning progress indicator. It has a rounding error, I think.
|
||||||
- Add more types of data fields.
|
- Add more types of data fields.
|
||||||
- Make server software to allow for easy sync over wifi
|
- Make server software to allow for easy sync over wifi
|
||||||
- Test the scouting app
|
|
||||||
|
|
||||||
## In Progress:
|
## In Progress:
|
||||||
#### Scouting:
|
#### Scouting:
|
||||||
@@ -22,6 +21,7 @@ Ridgebotics 2025 scouting app in Android
|
|||||||
- Make a word cloud for the compiled mode of text input type
|
- Make a word cloud for the compiled mode of text input type
|
||||||
#### Functionality:
|
#### Functionality:
|
||||||
- Make pit and match data field builder UIs. I don't want to have to keep editing a variable
|
- Make pit and match data field builder UIs. I don't want to have to keep editing a variable
|
||||||
|
- Test the scouting app
|
||||||
|
|
||||||
|
|
||||||
## Done:
|
## Done:
|
||||||
|
|||||||
@@ -22,23 +22,19 @@ public class fields {
|
|||||||
|
|
||||||
public static final inputType[][] default_match_fields = new inputType[][] {
|
public static final inputType[][] default_match_fields = new inputType[][] {
|
||||||
{
|
{
|
||||||
new sliderType("How good is robot", 5, 1, 10),
|
new tallyType("Auto Notes", 0),
|
||||||
new textType("notes", "<no-notes>"),
|
new sliderType("Auto Performance", 5, 1, 10),
|
||||||
},{
|
new textType("Auto Comments", "None"),
|
||||||
new sliderType("How good is robot", 5, 1, 10),
|
new tallyType("Teleop Notes", 0),
|
||||||
new sliderType("Test", 128, 64, 256),
|
new sliderType("Teleop Performance", 5, 1, 10),
|
||||||
new textType("notes", "<no-notes>"),
|
new textType("Teleop Comments", "None"),
|
||||||
},{
|
new sliderType("Overall Driving Performance", 5, 1, 10),
|
||||||
new sliderType("How good is robot", 5, 5, 10),
|
new textType("Overall Driving Comments", "None"),
|
||||||
new sliderType("Test", 128, 64, 256),
|
new sliderType("Score area (AMP <-> Speaker)", 5, 1, 10),
|
||||||
new dropdownType("test-dropdown", new String[]{"Test1", "test2", "Three"}, 1),
|
new dropdownType("End Condition", new String[]{"Nothing", "Attempted Climb", "Successful Climbed", "Climbed with multiple robots", "Climbed with trapz"}, 1),
|
||||||
new textType("notes", "<no-notes>"),
|
new dropdownType("Robot Condition", new String[]{"Everything was working", "Something seemed to be broken", "Something was broken", "Missing robot (Joe Johnson)"}, 1),
|
||||||
},{
|
new textType("Other Comments", "None")
|
||||||
new tallyType("Test Tally", 0),
|
}
|
||||||
new sliderType("Test2", 30, 25, 50),
|
|
||||||
new dropdownType("test-dropdown", new String[]{"Test1", "test2", "Three"}, 1),
|
|
||||||
new textType("notes", "<no-notes>"),
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
public static final inputType[][] default_pit_fields = new inputType[][] {
|
public static final inputType[][] default_pit_fields = new inputType[][] {
|
||||||
|
|||||||
Reference in New Issue
Block a user