Skip to content

Commit

Permalink
Minor fixes while running the robot
Browse files Browse the repository at this point in the history
  • Loading branch information
frc3316 committed Feb 16, 2015
1 parent 7806798 commit 0266c92
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 1 deletion.
Binary file modified dist/FRCUserProgram.jar
Binary file not shown.
2 changes: 2 additions & 0 deletions src/org/usfirst/frc/team3316/robot/humanIO/SDB.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import java.util.TimerTask;

import org.usfirst.frc.team3316.robot.Robot;
import org.usfirst.frc.team3316.robot.chassis.commands.StrafeDrive;
import org.usfirst.frc.team3316.robot.chassis.commands.TankDrive;
import org.usfirst.frc.team3316.robot.chassis.heading.SetHeadingPreset;
import org.usfirst.frc.team3316.robot.chassis.heading.SetHeadingSDB;
Expand Down Expand Up @@ -148,6 +149,7 @@ private void initSDB ()
SmartDashboard.putData(new UpdateVariablesInConfig()); // NEVER REMOVE THIS COMMAND

SmartDashboard.putData(new TankDrive());
SmartDashboard.putData(new StrafeDrive());
SmartDashboard.putData(new RobotOrientedDrive());

/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public double getGPIRDistance ()

public boolean getSwitchGP ()
{
return !gripperSwitchGP.get();
return gripperSwitchGP.get();
}

private void printTheTruth()
Expand Down
Binary file modified sysProps.xml
Binary file not shown.

0 comments on commit 0266c92

Please sign in to comment.