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

28 lines
674 B
C
Raw Normal View History

2015-01-16 19:29:55 -05:00
#ifndef ELEVATOR_H
#define ELEVATOR_H
#include "WPILib.h"
#include "Commands/PIDSubsystem.h"
2015-02-07 13:08:24 -05:00
class Elevator{
2015-01-16 20:12:48 -05:00
private:
2015-02-02 18:53:02 -05:00
CANTalon *motor;
Encoder *elevatorEncoder;
2015-01-16 20:46:58 -05:00
static constexpr double kP_real=4, kI_real=.0f, kP_simulation=18, kI_simulation=.2;
2015-02-15 07:53:19 -05:00
DigitalInput *elevatorBottom, *elevatorMiddle, *elevatorTop;
bool useEncoder;
2015-01-16 20:12:48 -05:00
public:
Elevator();
2015-02-15 07:53:19 -05:00
bool stoppedAtSensor;
2015-01-16 20:12:48 -05:00
void InitDefaultCommand();
2015-01-16 20:46:58 -05:00
void Run(double);
void ResetEncoder();
double GetHeight();
bool GetElevatorTop();
2015-02-15 07:53:19 -05:00
bool GetElevatorMiddle();
bool GetElevatorBottom();
void SetUseEncoder(bool);
bool GetUseEncoder();
2015-01-16 19:29:55 -05:00
};
#endif
2015-02-08 12:26:15 -05:00
// vim: ts=2:sw=2:et