Skip to content

Commit 944a2a1

Browse files
authored
Add pre-commit routines for prettier formatting on Xacro, launch and package XML files (#58)
* Add pre-commit check for prettier formatting on Xacro, launch and package XML files * Run pre-commit * Update repo for Xacro pre-commit hooks, now points to PRL repo
1 parent 616a9c5 commit 944a2a1

31 files changed

+4976
-1937
lines changed

.pre-commit-config.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,10 @@ repos:
6767
- id: codespell
6868
args:
6969
- --ignore-words=.codespell-ignore
70+
71+
- repo: https://github.com/personalrobotics/pr-pre-commit-hooks
72+
rev: v1.0.0
73+
hooks:
74+
- id: prettier-xacro
75+
- id: prettier-launch-xml
76+
- id: prettier-package-xml

ada_calibrate_camera/launch/publish_camera_extrinsics_launch.xml

+9-4
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@
22
Copyright (c) 2024-2025, Personal Robotics Laboratory
33
License: BSD 3-Clause. See LICENSE.md file in root directory.
44
-->
5-
65
<launch>
7-
<arg name="calibration_file_name" default="auto" description="Name of the calibration file to save" />
8-
<arg name="log_level" default="info" description="Log level to pass to create_action_servers: debug, info, warn" />
6+
<arg name="calibration_file_name" default="auto" description="Name of the calibration file to save"/>
7+
<arg name="log_level" default="info" description="Log level to pass to create_action_servers: debug, info, warn"/>
98

10-
<node pkg="ada_calibrate_camera" exec="publish_camera_extrinsics" name="publish_camera_extrinsics" respawn="true" args="--ros-args --log-level $(var log_level) --log-level rcl:=INFO --log-level rmw_cyclonedds_cpp:=INFO">
9+
<node
10+
pkg="ada_calibrate_camera"
11+
exec="publish_camera_extrinsics"
12+
name="publish_camera_extrinsics"
13+
respawn="true"
14+
args="--ros-args --log-level $(var log_level) --log-level rcl:=INFO --log-level rmw_cyclonedds_cpp:=INFO"
15+
>
1116
<param from="$(find-pkg-share ada_calibrate_camera)/config/calibs/$(var calibration_file_name).yaml"/>
1217
</node>
1318
</launch>

ada_description/package.xml

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
<package format="3">
44
<name>ada_description</name>
55
<version>0.0.2</version>
6-
<description>
7-
URDF description for Assistive Dexterous Arm
8-
</description>
6+
<description>URDF description for Assistive Dexterous Arm</description>
97

108
<author>Ethan K. Gordon</author>
119

ada_description/urdf/ada.xacro

+86-32
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,82 @@
11
<?xml version="1.0"?>
2-
3-
<robot xmlns:xi="http://www.w3.org/2001/XInclude"
2+
<robot
3+
xmlns:xi="http://www.w3.org/2001/XInclude"
44
xmlns:gazebo="http://playerstage.sourceforge.net/gazebo/xmlschema/#gz"
5-
xmlns:model="http://playerstage.sourceforge.net/gazebo/xmlschema/#model"
5+
xmlns:model="http://playerstage.sourceforge.net/gazebo/xmlschema/#model"
66
xmlns:sensor="http://playerstage.sourceforge.net/gazebo/xmlschema/#sensor"
77
xmlns:body="http://playerstage.sourceforge.net/gazebo/xmlschema/#body"
8-
xmlns:geom="http://playerstage.sourceforge.net/gazebo/xmlschema/#geom"
9-
xmlns:joint="http://playerstage.sourceforge.net/gazebo/xmlschema/#joint"
8+
xmlns:geom="http://playerstage.sourceforge.net/gazebo/xmlschema/#geom"
9+
xmlns:joint="http://playerstage.sourceforge.net/gazebo/xmlschema/#joint"
1010
xmlns:controller="http://playerstage.sourceforge.net/gazebo/xmlschema/#controller"
1111
xmlns:interface="http://playerstage.sourceforge.net/gazebo/xmlschema/#interface"
1212
xmlns:rendering="http://playerstage.sourceforge.net/gazebo/xmlschema/#rendering"
13-
xmlns:renderable="http://playerstage.sourceforge.net/gazebo/xmlschema/#renderable"
14-
xmlns:physics="http://playerstage.sourceforge.net/gazebo/xmlschema/#physics"
15-
xmlns:xacro="http://www.ros.org/wiki/xacro" name="ada">
16-
13+
xmlns:renderable="http://playerstage.sourceforge.net/gazebo/xmlschema/#renderable"
14+
xmlns:physics="http://playerstage.sourceforge.net/gazebo/xmlschema/#physics"
15+
xmlns:xacro="http://www.ros.org/wiki/xacro"
16+
name="ada"
17+
>
1718
<xacro:include filename="$(find ada_description)/urdf/forque/forque.xacro"/>
1819
<xacro:include filename="$(find ada_description)/urdf/camera/camera.xacro"/>
1920
<xacro:include filename="$(find ada_description)/urdf/j2n6s200.xacro"/>
2021

21-
<xacro:arg name="use_forque" default="true"/>
22+
<xacro:arg
23+
name="use_forque"
24+
default="true"
25+
/>
2226

2327
<link name="root"/>
2428

2529
<link name="root_tilt"/>
26-
<joint name="robot_tilt" type="revolute">
27-
<origin xyz="0 0 0" rpy="0 0 0" />
28-
<child link="root_tilt" />
29-
<parent link="root" />
30+
<joint
31+
name="robot_tilt"
32+
type="revolute"
33+
>
34+
<origin
35+
xyz="0 0 0"
36+
rpy="0 0 0"
37+
/>
38+
<child link="root_tilt"/>
39+
<parent link="root"/>
3040
<axis xyz="-1 0 0"/>
3141
<!-- effort copied from j2n6s200 joint 2, velocity is max velocity the wheelchair can tilt,
3242
lower and upper limits generously encompass the range of the wheelchair's tilt-->
33-
<limit effort="80" velocity="0.15" lower="${-J_PI}" upper="${J_PI}"/>
34-
<dynamics damping="0.0" friction="0.0"/>
43+
<limit
44+
effort="80"
45+
velocity="0.15"
46+
lower="${-J_PI}"
47+
upper="${J_PI}"
48+
/>
49+
<dynamics
50+
damping="0.0"
51+
friction="0.0"
52+
/>
3553
</joint>
3654

37-
<xacro:property name="robot_root" value="root_tilt" />
55+
<xacro:property
56+
name="robot_root"
57+
value="root_tilt"
58+
/>
3859

3960
<xacro:j2n6s200 base_parent="${robot_root}"/>
4061

41-
<xacro:camera_assembly base_parent="j2n6s200_link_6" base_xyz="0.0165 0 0.0011" base_rpy="${3*J_PI/2} 0 ${3*J_PI/2}"/>
62+
<xacro:camera_assembly
63+
base_parent="j2n6s200_link_6"
64+
base_xyz="0.0165 0 0.0011"
65+
base_rpy="${3*J_PI/2} 0 ${3*J_PI/2}"
66+
/>
4267

4368
<!-- Hard-coded Extrinsics -->
44-
<link name="camera_link" />
45-
<joint name="extrinsics" type="fixed">
46-
<origin xyz="0.0194 -0.01606 0.029014" rpy="0.17234 -1.56127 2.96967" />
47-
<parent link="cameraMount" />
48-
<child link="camera_link" />
69+
<link name="camera_link"/>
70+
<joint
71+
name="extrinsics"
72+
type="fixed"
73+
>
74+
<origin
75+
xyz="0.0194 -0.01606 0.029014"
76+
rpy="0.17234 -1.56127 2.96967"
77+
/>
78+
<parent link="cameraMount"/>
79+
<child link="camera_link"/>
4980
</joint>
5081
<!-- Copy Realsense in case of simulation -->
5182
<!--
@@ -57,20 +88,43 @@
5788
</joint>
5889
-->
5990

60-
<xacro:forque_assembly_link link_name="FTArmMount" link_mesh="2024_01_18_FTArmMount" mass="0.03783" cog="0.010957 -0.019223 -0.03777">
61-
<inertia ixx="0.000018817" iyy="0.00001119989" iyz="-0.00000120296" izz="0.000026883" ixy="-0.0000003327" ixz="-0.000000092476"/>
91+
<xacro:forque_assembly_link
92+
link_name="FTArmMount"
93+
link_mesh="2024_01_18_FTArmMount"
94+
mass="0.03783"
95+
cog="0.010957 -0.019223 -0.03777"
96+
>
97+
<inertia
98+
ixx="0.000018817"
99+
iyy="0.00001119989"
100+
iyz="-0.00000120296"
101+
izz="0.000026883"
102+
ixy="-0.0000003327"
103+
ixz="-0.000000092476"
104+
/>
62105
</xacro:forque_assembly_link>
63-
<xacro:forque_assembly_joint joint_name="FTArmMount_to_arm" parent="j2n6s200_link_6" child="FTArmMount" joint_origin_xyz="0.0065 -0.011 -0.0075" joint_origin_rpy="${J_PI/2} 0 ${J_PI/2}"/>
106+
<xacro:forque_assembly_joint
107+
joint_name="FTArmMount_to_arm"
108+
parent="j2n6s200_link_6"
109+
child="FTArmMount"
110+
joint_origin_xyz="0.0065 -0.011 -0.0075"
111+
joint_origin_rpy="${J_PI/2} 0 ${J_PI/2}"
112+
/>
64113

65114
<xacro:if value="$(arg use_forque)">
66115
<xacro:forque_assembly base_parent="FTArmMount"/>
67116

68-
<link name="FTSensor" />
69-
<joint name="EE_to_FTSensor" type="fixed">
70-
<child link="FTSensor"/>
71-
<parent link="j2n6s200_end_effector"/>
72-
<origin rpy="0 0 0" xyz="0.0 0.0 0.092"/>
117+
<link name="FTSensor"/>
118+
<joint
119+
name="EE_to_FTSensor"
120+
type="fixed"
121+
>
122+
<child link="FTSensor"/>
123+
<parent link="j2n6s200_end_effector"/>
124+
<origin
125+
rpy="0 0 0"
126+
xyz="0.0 0.0 0.092"
127+
/>
73128
</joint>
74129
</xacro:if>
75-
76130
</robot>

0 commit comments

Comments
 (0)