Alex exoskeleton
ALEX SoftwareDocumentation
SittingDwn.cpp
Go to the documentation of this file.
1 //------- Sitting Down ------------/////
4 #include "SittingDwn.h"
5 void SittingDwn::entry(void) {
6  std::cout << "Sitting Down State Entered " << endl
7  << "===================" << endl
8  << " GREEN -> SIT DOWN " << endl
9  << "===================" << endl;
12 }
13 void SittingDwn::during(void) {
15 }
16 void SittingDwn::exit(void) {
17  std::cout
18  << "Sitting Down State Exited " << endl;
19 }
DummyTrajectoryGenerator * trajectoryGenerator
Definition: ExoTestState.h:34
void entry(void)
Called once when the state is entered. Pure virtual function, must be overwritten by each state...
Definition: SittingDwn.cpp:5
bool moveThroughTraj()
For each joint, move through(send appropriate commands to joints) the Currently generated trajectory ...
Definition: ExoRobot.cpp:45
bool initialiseTrajectory()
Implementation of the initialiseTrajectory method in TrajectoryGenerator.
void exit(void)
Called once when the state exits. Pure virtual function, must be overwritten by each state...
Definition: SittingDwn.cpp:16
ExoRobot * robot
Definition: ExoTestState.h:33
void startNewTraj()
Begin a new trajectory with the currently loaded trajectory paramaters. Using the ExoRobot current co...
Definition: ExoRobot.cpp:37
void during(void)
Called continuously whilst in that state. Pure virtual function, must be overwritten by each state...
Definition: SittingDwn.cpp:13