DeepSpace
2019
|
An interface command for activating the Pull Arm on the robot. More...
#include <PullLeg.h>
Public Member Functions | |
PullLeg () | |
Class constructor. More... | |
void | Initialize () override |
Runs once on initalization. More... | |
void | Execute () override |
Called in a loop during Teleop. More... | |
bool | IsFinished () override |
void | End () override |
Runs once when IsFinished() returns true. More... | |
void | Interrupted () override |
Runs once if the command is forced to stop. More... | |
Private Attributes | |
double | speedMultiplier |
double | speed |
frc::XboxController * | pJoyDebug |
An interface command for activating the Pull Arm on the robot.
PullLeg::PullLeg | ( | ) |
Class constructor.
Definition at line 6 of file PullLeg.cpp.
|
override |
Runs once when IsFinished() returns true.
Definition at line 32 of file PullLeg.cpp.
|
override |
Called in a loop during Teleop.
Definition at line 18 of file PullLeg.cpp.
|
override |
Runs once on initalization.
Definition at line 12 of file PullLeg.cpp.
|
override |
Runs once if the command is forced to stop.
Definition at line 36 of file PullLeg.cpp.
|
override |
Used to tell wpilib if the command is fully finished. This should never return true Because we always want to be able to drive the bot during teleop
Definition at line 29 of file PullLeg.cpp.