Merged
This commit is contained in:
commit
7b4dc9cb71
@ -65,11 +65,22 @@ public:
|
||||
void LowerRamp()
|
||||
{
|
||||
launch_spinny->Set(-0.5);
|
||||
if(launch_spinny->Limits::kReverseLimit){
|
||||
SmartDashboard::PutNumber("ramp", 2); //going to put a circlar dial to show where the ramp could be
|
||||
} else {
|
||||
SmartDashboard::PutNumber("ramp", 1);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void RaiseRamp()
|
||||
{
|
||||
launch_spinny->Set(0.5);
|
||||
if(launch_spinny->Limits::kForwardLimit){
|
||||
SmartDashboard::PutNumber("ramp", 0); //going to put a circlar dial to show where the ramp could be
|
||||
} else {
|
||||
SmartDashboard::PutNumber("ramp", 1);
|
||||
}
|
||||
}
|
||||
|
||||
void StopRamp()
|
||||
@ -80,6 +91,11 @@ public:
|
||||
void BoostRamp()
|
||||
{
|
||||
launch_spinny->Set(1);
|
||||
if(launch_spinny->Limits::kForwardLimit){
|
||||
SmartDashboard::PutNumber("ramp", 0); //going to put a circlar dial to show where the ramp could be
|
||||
} else {
|
||||
SmartDashboard::PutNumber("ramp", 1);
|
||||
}
|
||||
}
|
||||
|
||||
void Shoot()
|
||||
@ -180,6 +196,7 @@ private:
|
||||
|
||||
Timer shotClock;
|
||||
bool ready;
|
||||
int fake_position;
|
||||
};
|
||||
|
||||
#endif /* SRC_SHOOTER_H_ */
|
||||
|
Reference in New Issue
Block a user