fixed a terrible formatting error

This commit is contained in:
NoahLacks63 2025-01-16 19:52:38 +00:00
parent 11a191440c
commit d1d577f52f

View File

@ -147,19 +147,19 @@ public class RobotContainer {
);
}
//creates tabs and transforms them on the shuffleboard//
private void configureShuffleboard() {
ShuffleboardTab sensorTab = Shuffleboard.getTab(OIConstants.kSensorsTab);
//creates tabs and transforms them on the shuffleboard
private void configureShuffleboard() {
ShuffleboardTab sensorTab = Shuffleboard.getTab(OIConstants.kSensorsTab);
sensorTab.addDouble("ElevatorPosition", elevator::getEncoderPosition)
.withSize(2, 1)
.withPosition(0, 0)
.withWidget(BuiltInWidgets.kTextView);
sensorTab.addDouble("ElevatorPosition", elevator::getEncoderPosition)
.withSize(2, 1)
.withPosition(0, 0)
.withWidget(BuiltInWidgets.kTextView);
sensorTab.addDouble("ArmPosition", arm::getEncoderPosition)
.withSize(2, 1)
.withPosition(2, 0)
.withWidget(BuiltInWidgets.kTextView);
sensorTab.addDouble("ArmPosition", arm::getEncoderPosition)
.withSize(2, 1)
.withPosition(2, 0)
.withWidget(BuiltInWidgets.kTextView);
}
public Command getAutonomousCommand() {