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

NadiaHammoudeh's profile - activity

2019-04-10 03:24:36 -0500 answered a question catkin-pkg distribution was not found

If the catkin-pkg version is right, easy_install should solve the problem: easy_install --upgrade catkin-pkg

2018-07-18 06:22:35 -0500 received badge  Nice Answer (source)
2016-03-17 07:00:40 -0500 received badge  Teacher (source)
2016-03-17 06:06:44 -0500 answered a question care-o-bot simulation fails on indigo / ubuntu 14.04 (all packages up to date as of 20160316)

With the release version the robot is not moving because there is a conflict with the cmd_vel topic name. The navigation publishes the twist command to /base_controller/command and gazebo is subscribed to /base/twist_controller/command.

The problem is already fixed but, at the moment, you have to use the actual source version. You can create a cob3-2_navigation.rosinstall file with the following lines:

 - git:
    uri: 'https://github.com/ipa320/cob_common.git'
    local-name: cob_common
    version: indigo_dev
- git:
    uri: 'https://github.com/ipa320/cob_control.git'
    local-name: cob_control
    version: indigo_dev
- git:
    uri: 'https://github.com/ipa320/cob_driver.git'
    local-name: cob_driver
    version: indigo_dev
- git:
    uri: 'https://github.com/ipa320/cob_robots.git'
    local-name: cob_robots
    version: indigo_dev
- git:
    uri: 'https://github.com/ipa320/cob_navigation.git'
    local-name: cob_navigation
    version: indigo_dev

And install the necessary packages using the commands:

rosinstall ~/YourWorkSpace/src cob3-2_navigation.rosinstall
rosdep install --from-path ~/YourWorkSpace/src -i -y
source ~/YourWorkSpace/devel/setup