5 <<
"==================================" << endl
6 <<
" WELCOME TO THE TEST STATE MACHINE" << endl
7 <<
"==================================" << endl
9 <<
"========================" << endl
10 <<
" PRESS S to start program" << endl
11 <<
"========================" << endl;
17 std::cout <<
"Initialise State Exited" << endl;
bool initPositionControl()
Initialises all joints to position control mode.
void entry(void)
Called once when the state is entered. Pure virtual function, must be overwritten by each state...
void exit(void)
Called once when the state exits. Pure virtual function, must be overwritten by each state...
void during(void)
Called continuously whilst in that state. Pure virtual function, must be overwritten by each state...