Completed artf2675 - rename SimpleRobot -> SampleRobot.

Change-Id: I23fc503f64fa6a715867f4b92f9d03e21f6c5f82
This commit is contained in:
Colby Skeggs
2014-08-08 10:48:00 -07:00
parent 5b8279f404
commit 0f93247641
12 changed files with 100 additions and 79 deletions

View File

@@ -1,7 +1,7 @@
Specific Issues
===============
- SimpleRobot.java (support for telling the DriverStation the current mode)
- SampleRobot.java (support for telling the DriverStation the current mode)
- Iterative.java (support for telling the DriverStation the current mode and nextPeriodReady())
- command/WaitUntilCommand.java (Needs DriverStation)
- command/Command.java (XXX Issue with DriverStation)

View File

@@ -20,14 +20,14 @@ import edu.wpi.first.wpilibj.livewindow.LiveWindow;
*
* Alternatively you can override the robotMain() method and manage all aspects of the robot yourself.
*/
public class SimpleRobot extends RobotBase {
public class SampleRobot extends RobotBase {
private boolean m_robotMainOverridden;
/**
* Create a new SimpleRobot
* Create a new SampleRobot
*/
public SimpleRobot() {
public SampleRobot() {
super();
m_robotMainOverridden = true;
}