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

SVS's profile - activity

2021-09-14 13:42:25 -0500 received badge  Good Question (source)
2019-05-16 21:25:15 -0500 received badge  Good Answer (source)
2019-01-13 18:56:43 -0500 received badge  Nice Answer (source)
2018-08-16 06:25:21 -0500 received badge  Nice Question (source)
2017-12-20 08:52:22 -0500 received badge  Nice Question (source)
2016-09-21 22:27:07 -0500 received badge  Nice Question (source)
2015-12-09 02:54:35 -0500 received badge  Famous Question (source)
2015-12-02 06:20:27 -0500 received badge  Famous Question (source)
2015-10-27 08:27:21 -0500 received badge  Famous Question (source)
2015-10-26 08:10:44 -0500 commented question why my model break down in gazebo?

did u check the exported urdf model in rviz?

2015-10-15 11:25:46 -0500 commented question Execuse me,where can I find the Ros source Code

If you are asking about ros core stacks, you can use this link

2015-10-08 00:34:59 -0500 received badge  Autobiographer
2015-09-29 06:56:39 -0500 commented question libgazebo_ros_openni_kinect.so depth pointcloud wrong tf

Whether you tried by changing the corresponding joint orientation?

2015-09-29 04:20:43 -0500 answered a question What is the use of multiple nodehandles

You can use this blog for better understanding.

2015-09-27 13:23:27 -0500 received badge  Notable Question (source)
2015-09-27 00:52:10 -0500 received badge  Popular Question (source)
2015-09-25 10:26:07 -0500 received badge  Editor (source)
2015-09-25 08:20:11 -0500 asked a question xl 320 dynamixel servo not working dynamixel package

Hi guys,

I was trying to use xl320 dynamixel servo with ros indigo (ubuntu 14.04) using dynamixel_motor package. But it was not detecting .I checked it again with dynamixel wizard in windows and it was working fine.The package was working fine for me with other dynamixel servos like ax12, etc .

Let me know if anyone faced similar issue? Is dynamixel package which I am using is not compatible with xl320 servo? Is there any other package for this ?

Please suggest me some solutions.

Thank you

2015-06-24 02:21:08 -0500 received badge  Famous Question (source)
2015-06-20 02:26:00 -0500 received badge  Notable Question (source)
2015-06-20 02:26:00 -0500 received badge  Popular Question (source)
2015-06-08 05:06:51 -0500 received badge  Notable Question (source)
2015-04-29 23:59:00 -0500 received badge  Notable Question (source)
2015-04-13 00:26:01 -0500 answered a question Adding laser sensors to Gazebo

May be this gazebo tutorials will help I guess . There they mentions about adding lasers in URDf model.

<gazebo reference="your_link_name">
<plugin name="your_link_laser_controller" filename="libgazebo_ros_laser.so">
... plugin parameters ...
</plugin>
</gazebo>
2015-03-21 18:20:21 -0500 received badge  Popular Question (source)
2015-03-21 10:18:42 -0500 received badge  Famous Question (source)
2015-03-21 10:15:16 -0500 received badge  Scholar (source)
2015-03-21 10:14:59 -0500 commented answer Controlling robots in gazebo without using gazebo plugins

Thank u lucasw. It is useful.

2015-03-21 00:47:18 -0500 asked a question Controlling robots in gazebo without using gazebo plugins

Is there a way to control robot models in gazebo by using external controller? I know usually it is controlled using plugins which we are adding in urdf file.

I mean, without using a gazebo control plugin is there a way to control robot model?

2015-03-10 18:25:29 -0500 received badge  Popular Question (source)
2015-03-06 01:17:38 -0500 answered a question steered wheel controller wheel joints not working

Got solution. The mistake is I registered position and velocity hardware interfaces for each joints.

2015-03-04 00:16:45 -0500 asked a question steered wheel controller wheel joints not working

I am trying to use steered wheel base controller for my four wheeled mobile base. I was trying to implement steering joints as position controlled and axle joints as velocity controlled.

My problem is, while publishing cmd_vel , axle joints are not working. Velocity command from ros control is always outputs as zero. But steering joints which uses position control is working when I published yaw velocity.

Is it problem with velocity control I implemented or it is a problem with steered base controller ?

What all things I need to taken care while setting control frequency of controller manager?

2015-02-03 12:37:21 -0500 answered a question navigation in gazebo

You have to set publishWheelTF and publishWheelJointState tags to true inside differential drive controller, like this

<publishWheelTF>true</publishWheelTF>

<publishWheelJointState>true</publishWheelJointState>.

For more information you can go through gazebo__ros__diff__drive_8cpp_source.. After adding this, check whether odom is publishing properly using rviz.

2015-01-30 23:28:08 -0500 asked a question Driver package for Herculex motor

Is there any driver package for dongbu herculex motor available in ros?

2015-01-09 04:02:21 -0500 received badge  Teacher (source)
2014-12-30 22:43:05 -0500 answered a question What does the selfCollide tag do in URDF?

As per written in gazebo tutorial,If the tag is set to true ,the link can collide with other links in the model. You can use this link as reference gazebo Elements For Links

2014-12-30 05:58:34 -0500 answered a question model can't see in gazebo

If you are using gazebo integrated with ros then this tutorial must be very much helpful. Mobile robot gazebo simulation. It explains things with a mobile robot example. OR follow the tutorial in gazebo website Arm manipulator gazebo simulation

2014-12-11 12:02:04 -0500 received badge  Notable Question (source)
2014-12-10 22:24:00 -0500 commented answer Simulation of mobile base in gazebo is not visualizing in rviz

I used differential drive plugin of gazebo.Inside that,there is odometry tag which publishes odom and it is publishing also.That odom topic can be selected from rviz without any errors. But it is not updating.

2014-12-10 04:58:16 -0500 received badge  Popular Question (source)
2014-12-09 22:50:03 -0500 received badge  Student (source)
2014-12-09 06:40:06 -0500 asked a question Simulation of mobile base in gazebo is not visualizing in rviz

Hi, I loaded a mobile base with differential drive in gazebo and I am able to control it in teleop mode. I tried to connect visualization to rviz. The robot is loaded fine in rviz . Wheels are rotating , but robot is not moving. Can any explain the reason?