How to record joint values during movement ?
Hi guys !
I'm moving my robot with a python script and I would like to record all the joint values during a movement. I suppose there is a topic where I could record the joint values. Do you have an idea ?
Thanks!
@Vaneltin, to record joint values you will need, either to estimate them with robot encoders and joint control code deployed in your robot or with things like joint_state_publisher node, that reads your
robot_description
and produce the sensor_msgs/JointState msg type. I do not know how is your environment so I cannot do much more with the information you posted.