fixed a terrible formatting error
This commit is contained in:
parent
11a191440c
commit
d1d577f52f
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user