mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
25 lines
538 B
C++
25 lines
538 B
C++
#include "Elevator.h"
|
|
#include "../RobotMap.h"
|
|
Elevator::Elevator()/* : PIDSubsystem("Elevator", kP_real, kI_real, 0.0)*/{
|
|
pot=new AnalogPotentiometer(0);
|
|
leftMotor=new Talon(1);
|
|
rightMotor=new Talon(0);
|
|
height=0;
|
|
//SetAbsoluteTolerance(0.004);
|
|
}
|
|
void Elevator::InitDefaultCommand(){
|
|
}
|
|
float Elevator::GetPotValue(){
|
|
return pot->Get();
|
|
}
|
|
void Elevator::Run(double power){
|
|
leftMotor->Set(power);
|
|
rightMotor->Set(power);
|
|
}
|
|
void Elevator::SetHeight(double ht){
|
|
height=ht;
|
|
}
|
|
double Elevator::GetHeight(){
|
|
return height;
|
|
}
|