delete second potentiometer for defense hand
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / subsystems / DefenseArm.java
... / ...
CommitLineData
1package org.usfirst.frc.team3501.robot.subsystems;\r
2\r
3import org.usfirst.frc.team3501.robot.Constants;\r
4\r
5import edu.wpi.first.wpilibj.AnalogPotentiometer;\r
6import edu.wpi.first.wpilibj.CANTalon;\r
7import edu.wpi.first.wpilibj.command.Subsystem;\r
8\r
9public class DefenseArm extends Subsystem {\r
10 // Defense arm related objects\r
11 public AnalogPotentiometer defenseArmPotentiometer;\r
12 public AnalogPotentiometer defenseHandPotentiometer;\r
13 public CANTalon defenseArmMotor;\r
14 public CANTalon defenseHandMotor;\r
15 public double hookHeight;\r
16\r
17 // Defense arm specific constants that relate to the degrees per pulse value\r
18 // for the potentiometers\r
19 // private final static double PULSES_PER_ROTATION = 1; // in pulses\r
20 public final static double FULL_RANGE = 270.0; // in degrees\r
21 public final static double OFFSET = -135.0; // in degrees\r
22 public final static double[] armPotValue = { 0.0, 45.0, 90.0 }; // 3 level\r
23\r
24 // array;\r
25\r
26 // do we want to use a hashmap??\r
27 // angles at 0,45,90 (Potentiometer value readings)\r
28 // degrees\r
29\r
30 public DefenseArm() {\r
31 defenseArmPotentiometer = new AnalogPotentiometer(\r
32 Constants.DefenseArm.ARM_CHANNEL,\r
33 FULL_RANGE, OFFSET);\r
34 Constants.DefenseArm.HAND_CHANNEL);\r
35 defenseArmMotor = new CANTalon(Constants.DefenseArm.ARM_PORT);\r
36 defenseHandMotor = new CANTalon(Constants.DefenseArm.HAND_PORT);\r
37 }\r
38\r
39 /***\r
40 * This method gets the height of the hook from the ground. The hook is\r
41 * attached to the end of the hand, which is attached to the arm.\r
42 * \r
43 * @return hookHeight gets height of hook from ground. The hook is attached to\r
44 * the end of the hand, which is attached the arm.\r
45 * \r
46 */\r
47\r
48 public double getHookHeight() {\r
49 return hookHeight;\r
50 }\r
51\r
52 @Override\r
53 protected void initDefaultCommand() {\r
54 }\r
55}\r