Add set motor speed methods in defense arm and add potentiometer getter methods
authorShaina Chen <shaina.sierra@gmail.com>
Sat, 30 Jan 2016 05:38:35 +0000 (21:38 -0800)
committerShaina Chen <shaina.sierra@gmail.com>
Fri, 5 Feb 2016 04:21:18 +0000 (20:21 -0800)
src/org/usfirst/frc/team3501/robot/subsystems/Scaler.java

index 7f685fcb5ec2ef0518cd54508104da5fcf5b9552..09f73021d0b34a19464119ed94734d7ff3fd3785 100755 (executable)
@@ -18,10 +18,13 @@ public class Scaler extends Subsystem {
 
   }
 
+<<<<<<< 39cd129b533ffb726c00d5d5cd98b541a25d23bd
   public void setPistonStatus(int status) {
 
   }
 
+=======
+>>>>>>> Add set motor speed methods in defense arm and add potentiometer getter methods
   public Value getSolenoidValue() {
     return piston.get();
   }
@@ -50,8 +53,52 @@ public class Scaler extends Subsystem {
     winch.set(speed);
   }
 
+<<<<<<< 39cd129b533ffb726c00d5d5cd98b541a25d23bd
+=======
+  /***
+   * This method returns boolean value true or false on whether piston is
+   * extended or not.
+   * 
+   * @return
+   *         returns true if piston is extended, false if otherwise.
+   */
+  public boolean getPistonStatus() {
+    return true;
+  }
+
+  /***
+   * This method sets the motor voltage for the scissor lift. The range is from
+   * [-1, 1].
+   *
+   * @param speed
+   *          The voltage that you set the motor at. The range of the voltage of
+   *          the motor is from [-1,1].
+   */
+  public void setScalarSpeed(double speed) {
+
+  }
+
+  /***
+   * This method sets the piston status for the scissor lift.
+   * The piston can either be extended or not extended.
+   * 
+   * @param status
+   *          The status of the piston.
+   *          0 for the piston to be extended, 1 for the piston to not be
+   *          extended.
+   */
+
+  public void setPistonStatus(int status) {
+
+  }
+
+>>>>>>> Add set motor speed methods in defense arm and add potentiometer getter methods
   @Override
   protected void initDefaultCommand() {
 
   }
+<<<<<<< 39cd129b533ffb726c00d5d5cd98b541a25d23bd
+=======
+
+>>>>>>> Add set motor speed methods in defense arm and add potentiometer getter methods
 }