ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Matz's profile - activity

2015-09-08 04:16:47 -0500 received badge  Famous Question (source)
2014-03-22 01:41:25 -0500 answered a question How to move an urdf model based on real joint_state?

yes, I merged all the joint_state messages of the various node into the input of the robot_state_pubblisher via remapping inside launch file

eg of the remap into launch file:

<node name="joint_state_publisher" pkg="joint_state_publisher" type="joint_state_publisher" &gt;="" <rosparam="" param="source_list">[/ptu/state, joint_states, /motore_1_controller/joint_states, /motore_2_controller/joint_states, /motore_3_controller/joint_states, /motore_4_controller/joint_states]</rosparam> </node>

2014-03-21 23:56:00 -0500 received badge  Famous Question (source)
2014-03-21 01:47:16 -0500 received badge  Popular Question (source)
2014-03-21 01:47:16 -0500 received badge  Notable Question (source)
2014-02-15 03:32:59 -0500 received badge  Notable Question (source)
2013-11-14 12:24:17 -0500 received badge  Popular Question (source)
2013-11-10 21:48:01 -0500 commented question Effort display in Rviz

yes, I also see it. This mean that this function is deprecated or only is there a new way to pubblish effort to rviz?

2013-11-09 02:53:07 -0500 asked a question Effort display in Rviz

Hi, I have a correctly working urdf model that i use inside rviz to display a robot and i would to add the visual effort indication as this http:// wiki.ros.org/rviz/DisplayTypes/Effort but when i try to enable it nothing happens (the topic are correctly publishing the effort data and there is no errors, the joint are continuous)

this is the joint states message that report also the effort

header: seq: 39879 stamp: secs: 1384008918 nsecs: 173034906 frame_id: '' name: ['pan', 'tilt', 'hub_f_l', 'hub_f_r', 'hub_p_l', 'hub_p_r', 'shaft_f_l', 'shaft_f_r', 'shaft_p_l', 'shaft_p_r'] position: [-0.19993987679481506, -0.3998797535896301, 0.17936893275759974, 0.1979537816102363, 0.17858727416318004, 0.1996941781970845, 0.0, 0.0, 0.0, 0.0] velocity: [0.19993987679481506, 0.19993987679481506, 0.0, -0.0, -0.0, 0.0, 0.0, 0.0, 0.0, 0.0] effort: [0.0, 0.0, -0.1875, -0.375, -0.1875, -0.125, 0.0, 0.0, 0.0, 0.0]

2013-10-13 05:12:46 -0500 received badge  Editor (source)
2013-10-13 05:07:20 -0500 asked a question How to move an urdf model based on real joint_state?

Hi all, how i have the model of a pan-tilt unit that i have wrote xml urdf file and imported in the parameter server, I'm able to see it in rviz but now I want to move it in function of the real position that I can read from the topic ptu/state that is in joint_state form.

I suppose that I need also the tf that robot_state_pubblisher can create but I don't know how to set it to read the correct topic because it create a tf topic but is void.

Thank you