Skip to content
This repository was archived by the owner on Sep 14, 2019. It is now read-only.

Commit 5f80ca8

Browse files
committed
preserve 2017 project structure
- move package from org.usfirst.frc.team199.robot to org.usfirst.frc.team199.Robot2018 - remove new WPILib deprications
1 parent 60f8007 commit 5f80ca8

5 files changed

Lines changed: 9 additions & 10 deletions

File tree

Robot2018/src/org/usfirst/frc/team199/robot/OI.java renamed to Robot2018/src/org/usfirst/frc/team199/Robot2018/OI.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
package org.usfirst.frc.team199.robot;
1+
package org.usfirst.frc.team199.Robot2018;
22

33
import edu.wpi.first.wpilibj.buttons.Button;
44

5-
import org.usfirst.frc.team199.robot.commands.ExampleCommand;
5+
import org.usfirst.frc.team199.Robot2018.commands.ExampleCommand;
66

77
/**
88
* This class is the glue that binds the controls on the physical operator

Robot2018/src/org/usfirst/frc/team199/robot/Robot.java renamed to Robot2018/src/org/usfirst/frc/team199/Robot2018/Robot.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
package org.usfirst.frc.team199.robot;
2+
package org.usfirst.frc.team199.Robot2018;
33

44
import edu.wpi.first.wpilibj.IterativeRobot;
55
import edu.wpi.first.wpilibj.command.Command;
@@ -8,8 +8,8 @@
88
import edu.wpi.first.wpilibj.smartdashboard.SendableChooser;
99
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
1010

11-
import org.usfirst.frc.team199.robot.commands.ExampleCommand;
12-
import org.usfirst.frc.team199.robot.subsystems.ExampleSubsystem;
11+
import org.usfirst.frc.team199.Robot2018.commands.ExampleCommand;
12+
import org.usfirst.frc.team199.Robot2018.subsystems.ExampleSubsystem;
1313

1414
/**
1515
* The VM is configured to automatically run this class, and to call the
@@ -111,6 +111,5 @@ public void teleopPeriodic() {
111111
*/
112112
@Override
113113
public void testPeriodic() {
114-
LiveWindow.run();
115114
}
116115
}

Robot2018/src/org/usfirst/frc/team199/robot/RobotMap.java renamed to Robot2018/src/org/usfirst/frc/team199/Robot2018/RobotMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.usfirst.frc.team199.robot;
1+
package org.usfirst.frc.team199.Robot2018;
22

33
/**
44
* The RobotMap is a mapping from the ports sensors and actuators are wired into

Robot2018/src/org/usfirst/frc/team199/robot/commands/ExampleCommand.java renamed to Robot2018/src/org/usfirst/frc/team199/Robot2018/commands/ExampleCommand.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
package org.usfirst.frc.team199.robot.commands;
1+
package org.usfirst.frc.team199.Robot2018.commands;
22

33
import edu.wpi.first.wpilibj.command.Command;
44

5-
import org.usfirst.frc.team199.robot.Robot;
5+
import org.usfirst.frc.team199.Robot2018.Robot;
66

77
/**
88
*

Robot2018/src/org/usfirst/frc/team199/robot/subsystems/ExampleSubsystem.java renamed to Robot2018/src/org/usfirst/frc/team199/Robot2018/subsystems/ExampleSubsystem.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.usfirst.frc.team199.robot.subsystems;
1+
package org.usfirst.frc.team199.Robot2018.subsystems;
22

33
import edu.wpi.first.wpilibj.command.Subsystem;
44

0 commit comments

Comments
 (0)