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

Not able to move Husky in simulation rviz

asked 2015-10-26 12:31:37 -0500

arttp2 gravatar image

updated 2015-10-27 08:22:23 -0500

I followed the tutorial given here http://wiki.ros.org/husky_navigation/...

After launching the three commands on three separate teminals, the husky robot is not moving at all, the 2D Navigation does not seem to work or maybe I am not using it correctly.

I can provide more details if this is not sufficient.

A typical error in rviz window is " No transform from [front_left_wheel_link] to [odom] "

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2018-03-24 20:04:20 -0500

Hi arttp2,

Did you manage to solve this problem? I am using ROS Kinetic and having the exact same problem now. I have been able to get rid of the error "No transform from [front_left_wheel_link] to [odom]" by changing

<?xml version="1.0"?>
<launch>
  <node name="rviz" pkg="rviz" type="rviz" args="-d $(find husky_viz)/rviz/robot.rviz" output="screen"/>
</launch>

to this

<?xml version="1.0"?>
<launch> 
    <node name="joint_state_publisher" pkg="joint_state_publisher" type="joint_state_publisher"/>
    <node name="rviz" pkg="rviz" type="rviz" args="-d $(find husky_viz)/rviz/robot.rviz"/>
</launch>

but I can not get the robot to move.

Cheers,

edit flag offensive delete link more

Question Tools

Stats

Asked: 2015-10-26 12:31:37 -0500

Seen: 548 times

Last updated: Oct 27 '15