Alex exoskeleton
ALEX SoftwareDocumentation
Standing.h
Go to the documentation of this file.
1 #ifndef STANDING_H_INCLUDED
2 #define STANDING_H_INCLUDED
3 
4 #include "ExoTestState.h"
5 
11 class Standing : public ExoTestState {
12  public:
13  void entry(void);
14  void during(void);
15  void exit(void);
16  Standing(StateMachine *m, ExoRobot *exo, DummyTrajectoryGenerator *tg, const char *name = NULL) : ExoTestState(m, exo, tg, name){};
17 };
18 
19 #endif
Example implementation of the Robot class, representing an X2 Exoskeleton, using DummyActuatedJoint a...
Definition: ExoRobot.h:27
Example Implementation of TrajectoryGenerator. Includes only two trajectories (Sit-to-Stand and Stand...
void during(void)
Called continuously whilst in that state. Pure virtual function, must be overwritten by each state...
Definition: Standing.cpp:14
Abstract class representing a state machine. Includes a number of State and Transition objects...
Definition: StateMachine.h:26
const char * name
Definition: State.h:93
Standing(StateMachine *m, ExoRobot *exo, DummyTrajectoryGenerator *tg, const char *name=NULL)
Definition: Standing.h:16
void exit(void)
Called once when the state exits. Pure virtual function, must be overwritten by each state...
Definition: Standing.cpp:17
Example Implementation of State Class. Used with ExoTestMachine.
Definition: ExoTestState.h:30
State for the ExoTestMachine (implementing ExoTestState) - representing when the exoskeleton is stand...
Definition: Standing.h:11
void entry(void)
Called once when the state is entered. Pure virtual function, must be overwritten by each state...
Definition: Standing.cpp:6