File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/frc/robot/util/custom Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
package frc .robot .util .custom ;
2
2
3
- import org .littletonrobotics .junction .networktables .LoggedDashboardNumber ;
3
+ import org .littletonrobotics .junction .networktables .LoggedNetworkNumber ;
4
4
5
5
import edu .wpi .first .wpilibj2 .command .Command ;
6
6
import edu .wpi .first .wpilibj2 .command .button .Trigger ;
7
7
8
- public class LoggedTunableConstant extends LoggedDashboardNumber {
8
+ public class LoggedTunableConstant extends LoggedNetworkNumber {
9
9
10
10
private double previousValue ;
11
11
12
12
public LoggedTunableConstant (String key , double defaultValue ) {
13
- super ("Constants/" + key , defaultValue );
13
+ super ("Tunable/ Constants/" + key , defaultValue );
14
14
this .previousValue = defaultValue ;
15
15
}
16
16
You can’t perform that action at this time.
0 commit comments