Mostly random stuff

This commit is contained in:
Astatin3
2024-07-03 19:31:20 -06:00
parent 3b07d74541
commit 0313f43207
15 changed files with 201 additions and 62 deletions
@@ -55,7 +55,7 @@ public class ScoutingDataWriter {
dataType[] dataTypes = new dataType[objects.size()-2];
int version = ((int)objects.get(0).get());
System.out.println(version);
// System.out.println(version);
String username = (String) objects.get(1).get();
for(int i = 0; i < values[version].length; i++){
@@ -25,7 +25,7 @@ public class fields {
new sliderType("Test", 128, 64, 256),
new notesType("notes", "<no-notes>"),
},{
new sliderType("How good is robot", 5, 1, 10),
new sliderType("How good is robot", 5, 5, 10),
new sliderType("Test", 128, 64, 256),
new dropdownType("test-dropdown", new String[]{"Test1", "test2", "Three"}, 1),
new notesType("notes", "<no-notes>"),
@@ -70,7 +70,7 @@ public class fields {
public static inputType[][] load(String filename){
byte[] bytes = fileEditor.readFile(filename);
System.out.println(bytes);
// System.out.println(bytes);
try {
BuiltByteParser bbp = new BuiltByteParser(bytes);