Skip to content

Commit 1bd53e9

Browse files
committed
Format
1 parent 743bc98 commit 1bd53e9

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ To integrate the Robotiq Hand-E gripper into your existing robot, you first need
9696

9797
A working example of such a file can be found [here](https://github.com/AGH-CEAI/aegis_ros/blob/humble-devel/aegis_description/urdf/modules/robotiq_hande_gripper.xacro). You can use this file as a starting point for your own integration.
9898

99-
Next, include this Xacro file in your main robot description tree at the appropriate tool link.
99+
Next, include this Xacro file in your main robot description tree at the appropriate tool link.
100100

101101
An example of including it in a robot Xacro can be found [here](https://github.com/AGH-CEAI/aegis_ros/blob/humble-devel/aegis_description/urdf/aegis.xacro).
102102

robotiq_hande_driver/bringup/launch/gripper_controller_preview.launch.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,35 +45,33 @@ def generate_launch_description():
4545
DeclareLaunchArgument(
4646
"frequency_hz",
4747
default_value="10",
48-
description="Set update rate for controller."
48+
description="Set update rate for controller.",
4949
)
5050
)
5151
declared_arguments.append(
5252
DeclareLaunchArgument(
5353
"tty_port",
5454
default_value="/tmp/ttyUR",
55-
description="Set serial port for RTU communication."
55+
description="Set serial port for RTU communication.",
5656
)
5757
)
5858
declared_arguments.append(
5959
DeclareLaunchArgument(
6060
"create_socat_tty",
6161
default_value="false",
62-
description="Create virtual serial port in Linux for RTU simulation."
62+
description="Create virtual serial port in Linux for RTU simulation.",
6363
)
6464
)
6565
declared_arguments.append(
6666
DeclareLaunchArgument(
6767
"ip_address",
6868
default_value="192.168.100.10",
69-
description="Set IP address for TCP connection."
69+
description="Set IP address for TCP connection.",
7070
)
7171
)
7272
declared_arguments.append(
7373
DeclareLaunchArgument(
74-
"port",
75-
default_value="54321",
76-
description="Set TCP port for connection."
74+
"port", default_value="54321", description="Set TCP port for connection."
7775
)
7876
)
7977

0 commit comments

Comments
 (0)