DeepSpace
2019
|
An interface command for activating the Pull Arm on the robot. More...
#include <PullArm.h>
Public Member Functions | |
PullArm () | |
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.
PullArm::PullArm | ( | ) |
Class constructor.
Definition at line 6 of file PullArm.cpp.
|
override |
Runs once when IsFinished() returns true.
Definition at line 33 of file PullArm.cpp.
|
override |
Called in a loop during Teleop.
Definition at line 21 of file PullArm.cpp.
|
override |
Runs once on initalization.
Definition at line 13 of file PullArm.cpp.
|
override |
Runs once if the command is forced to stop.
Definition at line 37 of file PullArm.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 30 of file PullArm.cpp.