z1_controller/include/FSM/State_Dance.h

20 lines
442 B
C
Raw Normal View History

2022-07-20 11:11:38 +08:00
#ifndef STATE_DANCETRAJ_H
#define STATE_DANCETRAJ_H
#include "FSM/State_Trajectory.h"
class State_Dance : public State_Trajectory{
public:
State_Dance(CtrlComponents *ctrlComp,
TrajectoryManager *traj,
ArmFSMStateName stateEnum,
ArmFSMStateName nextState,
std::string stateString);
void exit();
int checkChange(int cmd);
private:
bool _freeBottom = false;
void _setTraj(){}
};
#endif