Skip to content

Commit

Permalink
Run pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jjaime2 committed Dec 18, 2024
1 parent e2b14e8 commit 9c4ac8c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions ada_description/launch/view_ada.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def generate_launch_description():
"end_effector_tool",
default_value="none",
description="The end-effector tool being used: 'none', 'fork', 'articulable_fork'",
choices=['none', 'fork', 'articulable_fork']
choices=["none", "fork", "articulable_fork"],
)
)

Expand All @@ -88,7 +88,7 @@ def generate_launch_description():
),
" ",
"end_effector_tool:=",
end_effector_tool
end_effector_tool,
]
)
robot_description = {
Expand Down
4 changes: 2 additions & 2 deletions ada_description/urdf/ada.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@

<link name="root_tilt"/>
<joint name="robot_tilt" type="revolute">
<origin xyz="0 0 0" rpy="0 0 0" />
<origin xyz="0 0 0" rpy="0 0 0" />
<child link="root_tilt" />
<parent link="${base_parent}" />
<axis xyz="-1 0 0"/>
<!-- effort copied from j2n6s200 joint 2, velocity is max velocity the wheelchair can tilt,
lower and upper limits generously encompass the range of the wheelchair's tilt-->
<limit effort="80" velocity="0.15" lower="${-J_PI}" upper="${J_PI}"/>
<dynamics damping="0.0" friction="0.0"/>
</joint>
</joint>

<xacro:property name="robot_root" value="root_tilt" />

Expand Down
2 changes: 1 addition & 1 deletion ada_description/urdf/ada_standalone.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<xacro:arg name="end_effector_tool" default="fork" />

<xacro:include filename="$(find ada_description)/urdf/ada.xacro" />
<xacro:include filename="$(find ada_description)/urdf/ada.xacro" />

<link name="root"/>
<xacro:property name="root" value="root" />
Expand Down
2 changes: 1 addition & 1 deletion ada_description/urdf/forque/forque.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
<mechanicalReduction>160</mechanicalReduction>
</actuator>
</transmission>

<!--For torque sensing in simulation-->
<gazebo reference="${joint_name}">
<provideFeedback>true</provideFeedback>
Expand Down

0 comments on commit 9c4ac8c

Please sign in to comment.