You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue 1: The robot gets to the table and just rotates/oscillates
This (maybe) turns out to be a problem with the inflation radius in the planner. This can be fixed by changing it to 0.05 in /ros_ws/src/fetch_ros/fetch_navigation/config/costmap_common.yaml. Change it to:
robot_base_frame: base_linktransform_tolerance: 0.5robot_radius: 0.30inflater:
robot_radius: 0.30inflation_radius: 0.05# Obstacles are defined in robot folders
Issue 2: There is a python error when trying to grab the object on the table
After the robot raises its torso at the first table, it tries to pick up the object. But this python error occurs:
Traceback (most recent call last):
File "/ros_ws/src/fetch_gazebo/fetch_gazebo_demo/scripts/demo.py", line 274, in <module>
grasping_client.updateScene()
File "/ros_ws/src/fetch_gazebo/fetch_gazebo_demo/scripts/demo.py", line 152, in updateScene
wait = False)
TypeError: addSolidPrimitive() got an unexpected keyword argument 'wait'
This can be fixed by changing the calls in line 149-152 and 163-166 of /ros_ws/src/fetch_gazebo/fetch_gazebo_demo/scripts/demo.py to:
The demo for fetch described on http://docs.fetchrobotics.com/gazebo.html#running-the-mobile-manipulation-demo has some problems in the built docker image.
Issue 1: The robot gets to the table and just rotates/oscillates
This (maybe) turns out to be a problem with the inflation radius in the planner. This can be fixed by changing it to 0.05 in
/ros_ws/src/fetch_ros/fetch_navigation/config/costmap_common.yaml
. Change it to:Issue 2: There is a python error when trying to grab the object on the table
After the robot raises its torso at the first table, it tries to pick up the object. But this python error occurs:
This can be fixed by changing the calls in line 149-152 and 163-166 of
/ros_ws/src/fetch_gazebo/fetch_gazebo_demo/scripts/demo.py
to:Issue 3: The robot cannot go through the door to the second table
Not sure how to resolve this
It's possible that this is indicative of a larger error of some versioning mismatches on the grabbed sources.
The text was updated successfully, but these errors were encountered: