created a subclass by extention of analog potentiometer superclass
authornbhargava <namanb.edu@gmail.com>
Tue, 17 Nov 2015 04:51:54 +0000 (20:51 -0800)
committernbhargava <namanb.edu@gmail.com>
Tue, 17 Nov 2015 04:51:54 +0000 (20:51 -0800)
src/org/usfirst/frc3501/RiceCatRobot/subsystems/AnalogPotentiometer.java [new file with mode: 0644]

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
+       }
+
+
+}