Mira goofy test

This commit is contained in:
Shikhar
2026-01-29 19:30:50 -07:00
parent 5d38173168
commit 48aa289b4e
6 changed files with 37 additions and 17 deletions
@@ -11,6 +11,7 @@ public class ConfigurableString {
* @param name the name of the Smart Dashboard key.
* @param defualtValue the initilization value
*/
public ConfigurableString(String name, String defualtValue) {
this.name = name;
this.defualtValue = defualtValue;
@@ -20,4 +21,5 @@ public class ConfigurableString {
public String get() {
return SmartDashboard.getString(name, defualtValue);
}
}