2
0
mirror of https://github.com/team2059/Dent synced 2024-12-18 20:52:29 -05:00

Removed unused elevator and bin elevator constants

This commit is contained in:
Austen Adler 2015-03-09 07:34:29 -04:00
parent a923246677
commit 5d6897fb88
2 changed files with 0 additions and 2 deletions

View File

@ -7,7 +7,6 @@ class BinElevator{
private:
CANTalon *motor;
Encoder *elevatorEncoder;
static constexpr double kP_real=4, kI_real=.0f, kP_simulation=18, kI_simulation=.2;
DigitalInput *elevatorBottom, *elevatorTop;
public:
BinElevator();

View File

@ -7,7 +7,6 @@ class Elevator{
private:
CANTalon *motor;
Encoder *elevatorEncoder;
static constexpr double kP_real=4, kI_real=.0f, kP_simulation=18, kI_simulation=.2;
DigitalInput *elevatorBottom, *elevatorMiddle, *elevatorTop;
bool useEncoder;
public: