mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
33 lines
778 B
C++
33 lines
778 B
C++
#include "BinElevator.h"
|
|
#include "../RobotMap.h"
|
|
BinElevator::BinElevator(){
|
|
motor=new CANTalon(ELEVATOR_CAN);
|
|
elevatorEncoder=new Encoder(0,1,false);
|
|
offset=0;
|
|
height=0;
|
|
elevatorBottom=new DigitalInput(ELEVATOR_BOTTOM_DIO);
|
|
elevatorTop=new DigitalInput(ELEVATOR_TOP_DIO);
|
|
//SetAbsoluteTolerance(0.004);
|
|
}
|
|
void BinElevator::InitDefaultCommand(){
|
|
}
|
|
void BinElevator::Run(double power){
|
|
motor->Set(power);
|
|
}
|
|
void BinElevator::SetOffset(double ht){
|
|
offset=ht;
|
|
}
|
|
void BinElevator::ResetEncoder(){
|
|
elevatorEncoder->Reset();
|
|
}
|
|
double BinElevator::GetHeight(){
|
|
return elevatorEncoder->Get()+offset;
|
|
}
|
|
bool BinElevator::GetElevatorBottom(){
|
|
return elevatorBottom->Get();
|
|
}
|
|
bool BinElevator::GetElevatorTop(){
|
|
return elevatorTop->Get();
|
|
}
|
|
// vim: ts=2:sw=2:et
|