2015-01-16 19:29:55 -05:00
|
|
|
#ifndef ELEVATOR_H
|
|
|
|
#define ELEVATOR_H
|
|
|
|
|
|
|
|
#include "WPILib.h"
|
2015-01-17 13:28:27 -05:00
|
|
|
#include "Commands/PIDSubsystem.h"
|
2015-01-19 12:08:25 -05:00
|
|
|
class Elevator/*: public PIDSubsystem*/{
|
2015-01-16 20:12:48 -05:00
|
|
|
private:
|
2015-02-02 18:53:02 -05:00
|
|
|
CANTalon *motor;
|
2015-02-01 14:48:01 -05:00
|
|
|
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-01 14:48:01 -05:00
|
|
|
double offset, height;
|
2015-01-16 20:12:48 -05:00
|
|
|
public:
|
|
|
|
Elevator();
|
|
|
|
void InitDefaultCommand();
|
2015-01-16 20:46:58 -05:00
|
|
|
void Run(double);
|
2015-02-01 14:48:01 -05:00
|
|
|
void SetOffset(double);
|
2015-02-02 12:42:18 -05:00
|
|
|
void ResetEncoder();
|
2015-01-31 12:16:02 -05:00
|
|
|
double GetHeight();
|
2015-01-16 19:29:55 -05:00
|
|
|
};
|
|
|
|
#endif
|