created a subclass by extention of analog potentiometer superclass
[3501/2015-FRC-Spark] / src / org / usfirst / frc3501 / RiceCatRobot / subsystems / AnalogPotentiometer.java
1 package org.usfirst.frc3501.RiceCatRobot.subsystems;
2
3 import edu.wpi.first.wpilibj.AnalogInput;
4
5 public class AnalogPotentiometer extends edu.wpi.first.wpilibj.AnalogPotentiometer{
6
7 public AnalogPotentiometer(AnalogInput input, double fullRange, double offset) {
8 super(input, fullRange, offset);
9 // TODO Auto-generated constructor stub
10 }
11
12
13 }