added angle, MAX_ANGLE, MIN_ANGLE variables
[3501/2015-FRC-Spark] / src / org / usfirst / frc3501 / RiceCatRobot / subsystems / Potentiometer.java
index c0ad7a47ac9e0b066d81691c45dbe5443d71db8b..46a9558fa77075bb7ca3be23de7dad3a65170108 100644 (file)
@@ -1,6 +1,11 @@
 package org.usfirst.frc3501.RiceCatRobot.subsystems;
 
 public class Potentiometer {
+       double angle;
+       static final double MAX_ANGLE = 0;
+       static final double MIN_ANGLE = 360;
+       
+       
        
 
 }