Skip to content

Commit

Permalink
Merge pull request #105 from nakane11/urdf-limit
Browse files Browse the repository at this point in the history
Set velocity and effort limit for dummy urdf
  • Loading branch information
iory authored Nov 3, 2024
2 parents 5293ac9 + d1e2389 commit 5ec7f53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ros/kxr_controller/node_scripts/rcb4_ros_bridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def make_urdf_file(joint_name_to_id):
joint = ET.SubElement(robot, "joint", name=joint_name, type="continuous")
ET.SubElement(joint, "parent", link=previous_link_name)
ET.SubElement(joint, "child", link=link_name)

ET.SubElement(joint, "limit", velocity="7.47998", effort="0.656248")
previous_link_name = link_name

tmp_urdf_file = tempfile.mktemp(suffix=".urdf")
Expand Down

0 comments on commit 5ec7f53

Please sign in to comment.