Alex exoskeleton
ALEX SoftwareDocumentation
Sitting.cpp
Go to the documentation of this file.
1 //------- Sitting ------------/////
4 #include "Sitting.h"
5 void Sitting::entry() {
6  //READ TIME OF MAIN
7  std::cout << "Sitting State Entered at Time:" << std::endl
8  << "=======================" << std::endl
9  << " HIT W to begin standing up" << std::endl
10  << "=======================" << std::endl
11  << std::endl;
12 }
14  // OWNER->robot->moveThroughTraj();
15 }
16 void Sitting::exit() {
17  std::cout
18  << "Sitting State Exited" << std::endl;
19 }
void exit(void)
Called once when the state exits. Pure virtual function, must be overwritten by each state...
Definition: Sitting.cpp:16
void during(void)
Called continuously whilst in that state. Pure virtual function, must be overwritten by each state...
Definition: Sitting.cpp:13
void entry(void)
Called once when the state is entered. Pure virtual function, must be overwritten by each state...
Definition: Sitting.cpp:5