Skip to content

Commit

Permalink
added Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Lu-han-wang committed Jan 17, 2024
1 parent 88de3aa commit cfa6e1f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion simgui.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
"/SmartDashboard/Field": "Field2d",
"/SmartDashboard/IntakeCommand": "Command",
"/SmartDashboard/PIDController[2]": "PIDController",
"/SmartDashboard/Schedular": "Scheduler"
"/SmartDashboard/Schedular": "Scheduler",
"/SmartDashboard/VisionDebug": "Field2d",
"/SmartDashboard/VisionSystemSim-main/Sim Field": "Field2d"
},
"windows": {
"/SmartDashboard/Auto Chooser": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

public class DriveSubsystem extends SubsystemBase {
// Create MAXSwerveModules
//Test
private ISwerveModule m_frontLeft;

private ISwerveModule m_frontRight;
Expand All @@ -41,6 +42,7 @@ public class DriveSubsystem extends SubsystemBase {
/** Creates a new DriveSubsystem. */
public DriveSubsystem() {
if (Robot.isSimulation()) {
//test
m_frontLeft = new SimSwerveModule();
m_frontRight = new SimSwerveModule();
m_rearLeft = new SimSwerveModule();
Expand Down

0 comments on commit cfa6e1f

Please sign in to comment.