z1_controller/include/FSM/State_JointSpace.h

18 lines
367 B
C
Raw Normal View History

2023-04-18 20:26:55 +08:00
#ifndef JOINTSPACE_H
#define JOINTSPACE_H
#include "FSM/FSMState.h"
class State_JointSpace : public FSMState{
public:
State_JointSpace(CtrlComponents *ctrlComp);
~State_JointSpace(){}
void enter();
void run();
void exit();
int checkChange(int cmd);
private:
std::vector<double> jointSpeedMax;
};
2022-07-20 11:11:38 +08:00
#endif // JOINTSPACE_H