Skip to content

Commit

Permalink
Merge branch 'FRMotorController' of github.com:Beachbot330/SmartDashb…
Browse files Browse the repository at this point in the history
…oard into Beachbot330-FRMotorController
  • Loading branch information
PeterJohnson committed Aug 20, 2023
2 parents eabf068 + 73328da commit bd2a635
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@ public static void main(String[] args) throws IOException {

wrist = createTable(liveWindow, "Wrist", "LW Subsystem");
wPotentiometer = createTable(wrist, "Potentiometer", "Analog Input");
wVictor = createTable(wrist, "Victor", "Speed Controller");
wVictor = createTable(wrist, "Victor", "Motor Controller");

elevator = createTable(liveWindow, "Elevator", "PIDSubsystem");
ePotentiometer = createTable(elevator, "Potentiometer", "Analog Input");
eVictor = createTable(elevator, "Victor", "Speed Controller");
eVictor = createTable(elevator, "Victor", "Motor Controller");
ePID = createTable(elevator, "PID Controller", "PIDController");

testSys = createTable(liveWindow, "TestSystem", "LW Subsystem");
tComp = createTable(testSys, "Compressor", "Compressor");
tGearTooth = createTable(testSys, "Gear Tooth Sensor", "Gear Tooth");
tVictor = createTable(testSys, "Victor", "Speed Controller");
tVictor = createTable(testSys, "Victor", "Motor Controller");
tPotentiometer = createTable(testSys, "Potentiometer", "Analog Input");
tRelay = createTable(testSys, "Spike", "Relay");
tDigitalOutput = createTable(testSys, "Digital Output", "Digital Output");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class CANSpeedController extends AbstractTableWidget implements Controlle
private JPanel headerPanel;

/**
* Control panel containing the PID editor / speed controller editor.
* Control panel containing the PID editor / Motor Controller editor.
*/
private JPanel controlPanel;
private JPanel disabledControlPanel;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/**
* The main player in the Live Window. Subsystems hold every component that
* corresponds to that physical subsystem on the robot (e.g. a drive train would
* contain speed controllers and encoders).
* contain Motor Controllers and encoders).
*
* @author Sam Carlberg
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class SpeedController extends AbstractTableWidget implements Controller {

private NumberSlider controller;
/**
* Used to turn off the speed controller
* Used to turn off the Motor Controller
*/
private final JButton zeroButton = new JButton("Zero");

Expand Down

0 comments on commit bd2a635

Please sign in to comment.