Connect URSim with ur_gazebo
Is there any way I can connect URSim 3.x
with ur_gazebo
. I am able to move the gazebo model by publishing joint commands to arm_controller/follow_joint_trajectory
topic. I'd like to move the gazebo model through the URSim -> Program Robot -> Move tab
Asked by prajval10 on 2018-04-27 05:23:05 UTC
Answers
No, this is not possible.
Edit: of course 'everything' is possible, as this is software, but not in any way I can see would be meaningful (or wouldn't take quite some effort and time).
The action server accepts JointTrajectory
goals. Polyscope does not generate those. The UI of Polyscope sends URScript statements over the primary interface to the URControl
daemon running on the robot / on your computer (in the case of ursim). You'd have to get 'in between' these two, capture the statements, convert them to JointTrajectory
goals and send them to the action server. But this is only part of the problem, as you now have two separate robots (one in Gazebo, one in ursim) that are not in-sync.
What I believe you're actually asking for however is a jogging interface. You could see whether jog_arm suffices.
Asked by gvdhoorn on 2018-04-27 07:01:40 UTC
Comments