18 lines
367 B
C++
Executable File
18 lines
367 B
C++
Executable File
#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;
|
|
};
|
|
|
|
#endif // JOINTSPACE_H
|