diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-02-21 01:59:48 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-02-21 01:59:48 -0500 |
commit | 178f9cf75f06969b9349dda8d4cb1c425b27ed6f (patch) | |
tree | c2a11c05ef552007460fe141fb24b6379900a9ca | |
parent | 9670a734f62f23c982c43697c074563eb2baf9c0 (diff) |
Rename from robot2016 to robot2017
-rw-r--r-- | .project | 2 | ||||
-rw-r--r-- | build.properties | 2 | ||||
-rw-r--r-- | build.xml | 4 | ||||
-rw-r--r-- | src/org/usfirst/frc/team4272/robot2017/Autonomous.java (renamed from src/org/usfirst/frc/team4272/robot2016/Autonomous.java) | 2 | ||||
-rw-r--r-- | src/org/usfirst/frc/team4272/robot2017/Control.java (renamed from src/org/usfirst/frc/team4272/robot2016/Control.java) | 2 | ||||
-rw-r--r-- | src/org/usfirst/frc/team4272/robot2017/HwOI.java (renamed from src/org/usfirst/frc/team4272/robot2016/HwOI.java) | 2 | ||||
-rw-r--r-- | src/org/usfirst/frc/team4272/robot2017/HwRobot.java (renamed from src/org/usfirst/frc/team4272/robot2016/HwRobot.java) | 2 | ||||
-rw-r--r-- | src/org/usfirst/frc/team4272/robot2017/Robot.java (renamed from src/org/usfirst/frc/team4272/robot2016/Robot.java) | 2 | ||||
-rw-r--r-- | src/org/usfirst/frc/team4272/robot2017/Teleop.java (renamed from src/org/usfirst/frc/team4272/robot2016/Teleop.java) | 2 |
9 files changed, 10 insertions, 10 deletions
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <projectDescription> - <name>frc4272-robot2016</name> + <name>frc4272-robot2017</name> <comment></comment> <projects> </projects> diff --git a/build.properties b/build.properties index f1d586e..0b89af4 100644 --- a/build.properties +++ b/build.properties @@ -1,5 +1,5 @@ # Project specific information -package=org.usfirst.frc.team4272.robot2016 +package=org.usfirst.frc.team4272.robot2017 robot.class=${package}.Robot simulation.world.file=/usr/share/frcsim/worlds/GearsBotDemo.world #Uncomment and point at user libraries to include them in the build. Do not put libraries in the \wpilib\java folder, this folder is completely overwritten on plugin update. @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> -<project name="frc4272-robot2016" default="deploy"> +<project name="frc4272-robot2017" default="deploy"> <!-- The following properties can be defined to override system level @@ -28,7 +28,7 @@ <import file="${wpilib.ant.dir}/build.xml"/> <target name="javadoc"> - <javadoc access="public" author="true" classpath="${wpilib.jar}:${networktables.jar}" destdir="doc" nodeprecated="false" nodeprecatedlist="false" noindex="false" nonavbar="false" notree="false" packagenames="org.usfirst.frc.team4272.robot2016,org.usfirst.frc.team4272.robotlib" source="1.8" sourcepath="src" splitindex="true" use="true" version="true"> + <javadoc access="public" author="true" classpath="${wpilib.jar}:${networktables.jar}" destdir="doc" nodeprecated="false" nodeprecatedlist="false" noindex="false" nonavbar="false" notree="false" packagenames="org.usfirst.frc.team4272.robot2017,org.usfirst.frc.team4272.robotlib" source="1.8" sourcepath="src" splitindex="true" use="true" version="true"> <link href="${wpilib}/javadoc/"/> </javadoc> </target> diff --git a/src/org/usfirst/frc/team4272/robot2016/Autonomous.java b/src/org/usfirst/frc/team4272/robot2017/Autonomous.java index 39b792d..f3ce43f 100644 --- a/src/org/usfirst/frc/team4272/robot2016/Autonomous.java +++ b/src/org/usfirst/frc/team4272/robot2017/Autonomous.java @@ -1,4 +1,4 @@ -package org.usfirst.frc.team4272.robot2016; +package org.usfirst.frc.team4272.robot2017; public class Autonomous { private final HwRobot robot; diff --git a/src/org/usfirst/frc/team4272/robot2016/Control.java b/src/org/usfirst/frc/team4272/robot2017/Control.java index eae613e..0039c72 100644 --- a/src/org/usfirst/frc/team4272/robot2016/Control.java +++ b/src/org/usfirst/frc/team4272/robot2017/Control.java @@ -1,4 +1,4 @@ -package org.usfirst.frc.team4272.robot2016; +package org.usfirst.frc.team4272.robot2017; public class Control { double lDrive = 0, diff --git a/src/org/usfirst/frc/team4272/robot2016/HwOI.java b/src/org/usfirst/frc/team4272/robot2017/HwOI.java index 00b0b05..fcdfac6 100644 --- a/src/org/usfirst/frc/team4272/robot2016/HwOI.java +++ b/src/org/usfirst/frc/team4272/robot2017/HwOI.java @@ -1,4 +1,4 @@ -package org.usfirst.frc.team4272.robot2016; +package org.usfirst.frc.team4272.robot2017; import edu.wpi.first.wpilibj.Joystick; import edu.wpi.first.wpilibj.XboxController; diff --git a/src/org/usfirst/frc/team4272/robot2016/HwRobot.java b/src/org/usfirst/frc/team4272/robot2017/HwRobot.java index 1368d97..1cb1ee9 100644 --- a/src/org/usfirst/frc/team4272/robot2016/HwRobot.java +++ b/src/org/usfirst/frc/team4272/robot2017/HwRobot.java @@ -1,4 +1,4 @@ -package org.usfirst.frc.team4272.robot2016; +package org.usfirst.frc.team4272.robot2017; import edu.wpi.first.wpilibj.DigitalInput; import edu.wpi.first.wpilibj.DoubleSolenoid; diff --git a/src/org/usfirst/frc/team4272/robot2016/Robot.java b/src/org/usfirst/frc/team4272/robot2017/Robot.java index bb15ccc..afeba04 100644 --- a/src/org/usfirst/frc/team4272/robot2016/Robot.java +++ b/src/org/usfirst/frc/team4272/robot2017/Robot.java @@ -1,5 +1,5 @@ -package org.usfirst.frc.team4272.robot2016; +package org.usfirst.frc.team4272.robot2017; import edu.wpi.first.wpilibj.IterativeRobot; diff --git a/src/org/usfirst/frc/team4272/robot2016/Teleop.java b/src/org/usfirst/frc/team4272/robot2017/Teleop.java index 625e29c..b7ff063 100644 --- a/src/org/usfirst/frc/team4272/robot2016/Teleop.java +++ b/src/org/usfirst/frc/team4272/robot2017/Teleop.java @@ -1,4 +1,4 @@ -package org.usfirst.frc.team4272.robot2016; +package org.usfirst.frc.team4272.robot2017; import edu.wpi.first.wpilibj.GenericHID.Hand; import edu.wpi.first.wpilibj.Joystick; |