2015-01-16 19:29:55 -05:00
|
|
|
#include "Elevator.h"
|
|
|
|
#include "../RobotMap.h"
|
2015-01-19 12:08:25 -05:00
|
|
|
Elevator::Elevator()/* : PIDSubsystem("Elevator", kP_real, kI_real, 0.0)*/{
|
2015-02-02 19:56:27 -05:00
|
|
|
motor=new CANTalon(ELEVATOR_CAN);
|
2015-02-01 14:48:01 -05:00
|
|
|
elevatorEncoder=new Encoder(0,1,false);
|
|
|
|
offset=0;
|
2015-01-31 12:16:02 -05:00
|
|
|
height=0;
|
2015-01-17 12:21:16 -05:00
|
|
|
//SetAbsoluteTolerance(0.004);
|
2015-01-16 19:29:55 -05:00
|
|
|
}
|
2015-01-17 12:21:16 -05:00
|
|
|
void Elevator::InitDefaultCommand(){
|
2015-01-16 19:29:55 -05:00
|
|
|
}
|
2015-01-16 20:46:58 -05:00
|
|
|
void Elevator::Run(double power){
|
2015-02-02 18:53:02 -05:00
|
|
|
motor->Set(power);
|
2015-01-16 20:46:58 -05:00
|
|
|
}
|
2015-02-01 14:48:01 -05:00
|
|
|
void Elevator::SetOffset(double ht){
|
|
|
|
offset=ht;
|
|
|
|
}
|
|
|
|
void Elevator::ResetEncoder(){
|
|
|
|
elevatorEncoder->Reset();
|
2015-01-31 12:16:02 -05:00
|
|
|
}
|
|
|
|
double Elevator::GetHeight(){
|
2015-02-01 14:48:01 -05:00
|
|
|
return elevatorEncoder->Get()+offset;
|
2015-01-31 12:16:02 -05:00
|
|
|
}
|