Skip to content

Commit 7e00fe8

Browse files
aint no way they deprecated the thing i made yesterday
1 parent 9f34744 commit 7e00fe8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/frc/robot/util/custom/LoggedTunableConstant.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
package frc.robot.util.custom;
22

3-
import org.littletonrobotics.junction.networktables.LoggedDashboardNumber;
3+
import org.littletonrobotics.junction.networktables.LoggedNetworkNumber;
44

55
import edu.wpi.first.wpilibj2.command.Command;
66
import edu.wpi.first.wpilibj2.command.button.Trigger;
77

8-
public class LoggedTunableConstant extends LoggedDashboardNumber {
8+
public class LoggedTunableConstant extends LoggedNetworkNumber {
99

1010
private double previousValue;
1111

1212
public LoggedTunableConstant(String key, double defaultValue) {
13-
super("Constants/" + key, defaultValue);
13+
super("Tunable/Constants/" + key, defaultValue);
1414
this.previousValue = defaultValue;
1515
}
1616

0 commit comments

Comments
 (0)