created a subclass by extention of analog potentiometer superclass
[3501/2015-FRC-Spark] / src / org / usfirst / frc3501 / RiceCatRobot / subsystems / AnalogPotentiometer.java
diff --git a/src/org/usfirst/frc3501/RiceCatRobot/subsystems/AnalogPotentiometer.java b/src/org/usfirst/frc3501/RiceCatRobot/subsystems/AnalogPotentiometer.java
new file mode 100644 (file)
index 0000000..a7b8ed7
--- /dev/null
@@ -0,0 +1,13 @@
+package org.usfirst.frc3501.RiceCatRobot.subsystems;
+
+import edu.wpi.first.wpilibj.AnalogInput;
+
+public class AnalogPotentiometer extends edu.wpi.first.wpilibj.AnalogPotentiometer{
+
+       public AnalogPotentiometer(AnalogInput input, double fullRange, double offset) {
+               super(input, fullRange, offset);
+               // TODO Auto-generated constructor stub
+       }
+
+
+}