summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-01-16 15:14:37 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-01-16 15:14:37 -0500
commit7fad9de275f72354deb1a86ee0e8312a420bf783 (patch)
tree075c09eccd19a5c24ee5a74a12d9a2e7964b5e49
parent43771f1f16c8368fde4267ed64c4568dc620ad61 (diff)
mv src/org/mkenzierobotics/lib/robot/* src/org/usfirst/frc/team4272/robotlib
-rw-r--r--src/org/usfirst/frc/team4272/robot2016/HwRobot.java2
-rw-r--r--src/org/usfirst/frc/team4272/robotlib/CommandBase.java (renamed from src/org/mckenzierobotics/lib/robot/CommandBase.java)2
-rw-r--r--src/org/usfirst/frc/team4272/robotlib/CommandRobot.java (renamed from src/org/mckenzierobotics/lib/robot/CommandRobot.java)2
-rw-r--r--src/org/usfirst/frc/team4272/robotlib/FeedForward.java (renamed from src/org/mckenzierobotics/lib/robot/FeedForward.java)2
-rw-r--r--src/org/usfirst/frc/team4272/robotlib/PIDController.java (renamed from src/org/mckenzierobotics/lib/robot/PIDController.java)2
-rw-r--r--src/org/usfirst/frc/team4272/robotlib/PIDOutputSplitter.java (renamed from src/org/mckenzierobotics/lib/robot/PIDOutputSplitter.java)2
-rw-r--r--src/org/usfirst/frc/team4272/robotlib/PIDServo.java (renamed from src/org/mckenzierobotics/lib/robot/PIDServo.java)2
-rw-r--r--src/org/usfirst/frc/team4272/robotlib/RateLimitedPIDOutput.java (renamed from src/org/mckenzierobotics/lib/robot/RateLimitedPIDOutput.java)2
-rw-r--r--src/org/usfirst/frc/team4272/robotlib/RollingAvg.java (renamed from src/org/mckenzierobotics/lib/robot/RollingAvg.java)2
-rw-r--r--src/org/usfirst/frc/team4272/robotlib/SendablePIDOutput.java (renamed from src/org/mckenzierobotics/lib/robot/SendablePIDOutput.java)2
10 files changed, 10 insertions, 10 deletions
diff --git a/src/org/usfirst/frc/team4272/robot2016/HwRobot.java b/src/org/usfirst/frc/team4272/robot2016/HwRobot.java
index da4c1b4..b2c7150 100644
--- a/src/org/usfirst/frc/team4272/robot2016/HwRobot.java
+++ b/src/org/usfirst/frc/team4272/robot2016/HwRobot.java
@@ -1,6 +1,6 @@
package org.usfirst.frc.team4272.robot2016;
-import org.mckenzierobotics.lib.robot.PIDOutputSplitter;
+import org.usfirst.frc.team4272.robotlib.PIDOutputSplitter;
import edu.wpi.first.wpilibj.Encoder;
import edu.wpi.first.wpilibj.PIDOutput;
diff --git a/src/org/mckenzierobotics/lib/robot/CommandBase.java b/src/org/usfirst/frc/team4272/robotlib/CommandBase.java
index a0fb5a2..0519a2a 100644
--- a/src/org/mckenzierobotics/lib/robot/CommandBase.java
+++ b/src/org/usfirst/frc/team4272/robotlib/CommandBase.java
@@ -23,7 +23,7 @@
*
* @author Luke Shumaker <lukeshu@sbcglobal.net>
*/
-package org.mckenzierobotics.lib.robot;
+package org.usfirst.frc.team4272.robotlib;
import edu.wpi.first.wpilibj.CANJaguar;
import edu.wpi.first.wpilibj.command.Command;
diff --git a/src/org/mckenzierobotics/lib/robot/CommandRobot.java b/src/org/usfirst/frc/team4272/robotlib/CommandRobot.java
index ecbd879..306a09e 100644
--- a/src/org/mckenzierobotics/lib/robot/CommandRobot.java
+++ b/src/org/usfirst/frc/team4272/robotlib/CommandRobot.java
@@ -19,7 +19,7 @@
* @author Luke Shumaker <lukeshu@sbcglobal.net>
*/
-package org.mckenzierobotics.lib.robot;
+package org.usfirst.frc.team4272.robotlib;
import edu.wpi.first.wpilibj.IterativeRobot;
import edu.wpi.first.wpilibj.command.Command;
diff --git a/src/org/mckenzierobotics/lib/robot/FeedForward.java b/src/org/usfirst/frc/team4272/robotlib/FeedForward.java
index c7a06b8..00b2d14 100644
--- a/src/org/mckenzierobotics/lib/robot/FeedForward.java
+++ b/src/org/usfirst/frc/team4272/robotlib/FeedForward.java
@@ -16,7 +16,7 @@
*
* @author Luke Shumaker <lukeshu@sbcglobal.net>
*/
-package org.mckenzierobotics.lib.robot;
+package org.usfirst.frc.team4272.robotlib;
import edu.wpi.first.wpilibj.PIDOutput;
import edu.wpi.first.wpilibj.PIDSource;
diff --git a/src/org/mckenzierobotics/lib/robot/PIDController.java b/src/org/usfirst/frc/team4272/robotlib/PIDController.java
index b0cf99f..3a867bb 100644
--- a/src/org/mckenzierobotics/lib/robot/PIDController.java
+++ b/src/org/usfirst/frc/team4272/robotlib/PIDController.java
@@ -26,7 +26,7 @@
*
* @author Luke Shumaker <lukeshu@sbcglobal.net>
*/
-package org.mckenzierobotics.lib.robot;
+package org.usfirst.frc.team4272.robotlib;
import edu.wpi.first.wpilibj.PIDOutput;
import edu.wpi.first.wpilibj.PIDSource;
diff --git a/src/org/mckenzierobotics/lib/robot/PIDOutputSplitter.java b/src/org/usfirst/frc/team4272/robotlib/PIDOutputSplitter.java
index c689bab..c750659 100644
--- a/src/org/mckenzierobotics/lib/robot/PIDOutputSplitter.java
+++ b/src/org/usfirst/frc/team4272/robotlib/PIDOutputSplitter.java
@@ -27,7 +27,7 @@
* @author Luke Shumaker <lukeshu@sbcglobal.net>
*/
-package org.mckenzierobotics.lib.robot;
+package org.usfirst.frc.team4272.robotlib;
import edu.wpi.first.wpilibj.PIDOutput;
diff --git a/src/org/mckenzierobotics/lib/robot/PIDServo.java b/src/org/usfirst/frc/team4272/robotlib/PIDServo.java
index 9d038d1..2a19a51 100644
--- a/src/org/mckenzierobotics/lib/robot/PIDServo.java
+++ b/src/org/usfirst/frc/team4272/robotlib/PIDServo.java
@@ -16,7 +16,7 @@
*
* @author Luke Shumaker <lukeshu@sbcglobal.net>
*/
-package org.mckenzierobotics.lib.robot;
+package org.usfirst.frc.team4272.robotlib;
import edu.wpi.first.wpilibj.Servo;
import edu.wpi.first.wpilibj.PIDOutput;
diff --git a/src/org/mckenzierobotics/lib/robot/RateLimitedPIDOutput.java b/src/org/usfirst/frc/team4272/robotlib/RateLimitedPIDOutput.java
index 10f01ce..e54ae27 100644
--- a/src/org/mckenzierobotics/lib/robot/RateLimitedPIDOutput.java
+++ b/src/org/usfirst/frc/team4272/robotlib/RateLimitedPIDOutput.java
@@ -17,7 +17,7 @@
* @author Luke Shumaker <lukeshu@sbcglobal.net>
*/
-package org.mckenzierobotics.lib.robot;
+package org.usfirst.frc.team4272.robotlib;
import edu.wpi.first.wpilibj.PIDOutput;
import edu.wpi.first.wpilibj.Timer;
diff --git a/src/org/mckenzierobotics/lib/robot/RollingAvg.java b/src/org/usfirst/frc/team4272/robotlib/RollingAvg.java
index 3001b8a..665e7bf 100644
--- a/src/org/mckenzierobotics/lib/robot/RollingAvg.java
+++ b/src/org/usfirst/frc/team4272/robotlib/RollingAvg.java
@@ -27,7 +27,7 @@
* @author Luke Shumaker <lukeshu@sbcglobal.net>
*/
-package org.mckenzierobotics.lib.robot;
+package org.usfirst.frc.team4272.robotlib;
import edu.wpi.first.wpilibj.PIDSource;
import edu.wpi.first.wpilibj.PIDSourceType;
diff --git a/src/org/mckenzierobotics/lib/robot/SendablePIDOutput.java b/src/org/usfirst/frc/team4272/robotlib/SendablePIDOutput.java
index 679c6e1..a6886fa 100644
--- a/src/org/mckenzierobotics/lib/robot/SendablePIDOutput.java
+++ b/src/org/usfirst/frc/team4272/robotlib/SendablePIDOutput.java
@@ -17,7 +17,7 @@
* @author Luke Shumaker <lukeshu@sbcglobal.net>
*/
-package org.mckenzierobotics.lib.robot;
+package org.usfirst.frc.team4272.robotlib;
import edu.wpi.first.wpilibj.PIDOutput;
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;