How to solve the jitter problem when you send ur robot multiple consecutive points?
And the instruction sent later overwrites the instruction sent earlier
I tried to wrap the points as a function, but the jitter problem was still unresolved.
Is there any good method?
I use TCP protocol, go robot 30003 port
The code sent is as follows:
pose = “def motions():\n”
" movel(p[-0.18278,0.45842,0.71426,1.98535,-1.88042,1.00875],t=2)\n"
" movel(p[-0.17838,0.45842,0.70993,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.17197,0.45842,0.70537,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.16479,0.46053,0.70272,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.15519,0.46369,0.70272,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.14654,0.46658,0.70272,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.13857,0.46901,0.70586,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.13196,0.46901,0.71113,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.12687,0.46901,0.71948,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.12426,0.46901,0.72943,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.12426,0.46596,0.74091,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.12426,0.46163,0.75307,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.12812,0.45616,0.76525,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.13383,0.44997,0.77717,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.14208,0.44269,0.78957,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.15131,0.43588,0.80023,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.16083,0.42967,0.80930,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.17246,0.42291,0.81830,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.18473,0.41674,0.82537,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.19833,0.41056,0.83022,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.21030,0.40556,0.83022,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.22156,0.40108,0.83022,1.98535,-1.88042,1.00875],t=0.3)\n"
" movel(p[-0.23139,0.39726,0.82689,1.98535,-1.88042,1.00875],t=0.3)\n"
“end\n”
“motions()\n”