Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

URDF: Add limits to the continuous joints #387

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
<origin xyz="0 -${base_width/2} ${z_offset}" rpy="0 0 0"/>
<axis xyz="0 1 0"/>
<dynamics damping="0.2"/>
<limit effort="100" velocity="1.0"/>
</joint>

<!-- left wheel Link -->
Expand Down Expand Up @@ -84,6 +85,7 @@
<origin xyz="0 ${base_width/2} ${z_offset}" rpy="0 0 0"/>
<axis xyz="0 1 0"/>
<dynamics damping="0.2"/>
<limit effort="100" velocity="1.0"/>
</joint>

<!-- right wheel Link -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
<origin xyz="0 ${width} ${height1 - axel_offset}" rpy="0 0 0"/>
<axis xyz="0 1 0"/>
<dynamics damping="0.7"/>
<limit effort="100" velocity="1.0"/>
</joint>

<!-- Middle Link -->
Expand Down Expand Up @@ -85,6 +86,7 @@
<origin xyz="0 ${width} ${height2 - axel_offset*2}" rpy="0 0 0"/>
<axis xyz="0 1 0"/>
<dynamics damping="0.7"/>
<limit effort="100" velocity="1.0"/>
</joint>

<!-- Top Link -->
Expand Down
Loading