1. 添加示教模式下支持手爪功能
2. 增添关节空间及笛卡尔空间下跟踪功能
This commit is contained in:
Agnel Wang 2022-09-19 17:07:10 +08:00
parent a5eaa3dae4
commit ab2280d83f
8 changed files with 7 additions and 3 deletions

View File

@ -84,6 +84,7 @@ link_directories(lib)
# ----------------------add executable----------------------
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/../build) # EXECUTABLE:CMAKE_RUNTIME_OUTPUT_DIRECTORY
add_executable(z1_ctrl main.cpp)
# add_dependencies(z1_ctrl Z1_${COMMUNICATION}_Linux64)
target_link_libraries(z1_ctrl ${catkin_LIBRARIES} libUnitree_motor_SDK_Linux64_EPOLL.so libZ1_${COMMUNICATION}_Linux64.so)
# set(EXECUTABLE_OUTPUT_PATH /home/$ENV{USER}/)

View File

@ -1,5 +1,5 @@
<configurartion>
<control set="1">
<control set="2">
<option1>keyboard</option1>
<option2>sdk</option2>
<option3>joystick</option3> <!-- default aliengo_joystick -->

View File

@ -21,6 +21,7 @@ private:
size_t _index = 0;
size_t _indexPast;
Vec6 _trajStartQ, _trajStartQd;
double _trajStartGripperQ, _trajStartGripperQd;
CSVTool *_csvFile;
};

View File

@ -2,7 +2,7 @@
#define IOUDP_H
#include "interface/IOInterface.h"
#include "/usr/include/x86_64-linux-gnu/bits/floatn-common.h"
// #include "/usr/include/x86_64-linux-gnu/bits/floatn-common.h"
class IOUDP : public IOInterface{
public:

View File

@ -31,6 +31,7 @@ private:
bool _checkJointAngleValid(const double &q, int jointOrder);
void _generateA345();
SCurve _jointCurve;
int _jointNum;
double _pathTimeTemp; // path total time
double _s, _sDot; // [0, 1]
@ -38,6 +39,7 @@ private:
int _trajOrder; // The order of trajectory curve
std::vector<Vec6> _curveParam;
};
#endif // JOINTSPACETRAJ_H

Binary file not shown.

Binary file not shown.

View File

@ -110,7 +110,7 @@ int main(int argc, char **argv){
cmdPanel = new Keyboard(events, emptyAction);
}else if(ctrlComp->ctrl == Control::_JOYSTICK){
events.push_back(new StateAction("r12", (int)ArmFSMStateName::PASSIVE));
events.push_back(new StateAction("r2x", (int)ArmFSMStateName::TRAJECTORY));
events.push_back(new StateAction("l12", (int)ArmFSMStateName::PASSIVE));
events.push_back(new StateAction("r2", (int)ArmFSMStateName::JOINTCTRL));
events.push_back(new StateAction("r1", (int)ArmFSMStateName::CARTESIAN));