From ec2adc8c5f7c128c27387ef0ea5e8ac899ed97be Mon Sep 17 00:00:00 2001 From: JesusSilvaUtrera Date: Tue, 26 Mar 2024 10:11:05 +0100 Subject: [PATCH 1/2] Added README for andino_bringup Signed-off-by: JesusSilvaUtrera --- andino_bringup/README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 andino_bringup/README.md diff --git a/andino_bringup/README.md b/andino_bringup/README.md new file mode 100644 index 00000000..33c292c9 --- /dev/null +++ b/andino_bringup/README.md @@ -0,0 +1,26 @@ +# andino_bringup + +## Description +This package contains mainly launch files in order to launch all related driver and nodes to be used in the real robot. Some configuration files are also added to set up the nodes launched in the 'config' folder. + +## Launch Files + +### Main file + +The main launch file is the `andino_robot.launch.py` file. This file executes all necessary nodes for Andino Robot to work. + +It includes: + +- `andino_description.launch.py`: file to load the 3D model of the robot from the URDF. +- `andino_control.launch.py`: file for the ROS2 control nodes and drivers. +- `camera.launch.py`: file to execute the camera drivers, using `v4l2_camera` package. If not necessary, it can be disabled using the `include_camera` parameter. +- `rplidar.launch.py`: file to execute the drivers of the RP 2D LiDAR attached to the robot. If not necessary, it can be disabled using the `include_rplidar` parameter. + +### Other launch files included + +These launch files are included just in case we want to command the robot in different ways, or visualize the information: + +- `rosbag_record.launch.py`: executes the `ros2 bag record` command to store a '.bag' file with the specified topics. If no topics are specified, it will record all of them. +- `rviz.launch.py`: executes the RViz visualization tool with the 'andino.rviz' configuration by default, to be able to visualize the 3D model of the robot and information form the topics. +- `teleop_joystick.launch.py`: this file allows you to command the robot using a controller with a joystick, using the `teleop_twist_joy` and the `joy_linux` packages. +- `teleop_keyboard.launch.py`: this file allows you to command the robot using a keyboard, using the `teleop_twist_keyboard` package. From 3caf12dc2f5eae01c6a965b261f143750af61515 Mon Sep 17 00:00:00 2001 From: JesusSilvaUtrera Date: Wed, 27 Mar 2024 12:10:53 +0100 Subject: [PATCH 2/2] Fixed some minor changes in new README Signed-off-by: JesusSilvaUtrera --- andino_bringup/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/andino_bringup/README.md b/andino_bringup/README.md index 33c292c9..92e1ea0c 100644 --- a/andino_bringup/README.md +++ b/andino_bringup/README.md @@ -12,15 +12,15 @@ The main launch file is the `andino_robot.launch.py` file. This file executes al It includes: - `andino_description.launch.py`: file to load the 3D model of the robot from the URDF. -- `andino_control.launch.py`: file for the ROS2 control nodes and drivers. +- `andino_control.launch.py`: file for the `ros2_control` nodes and drivers. - `camera.launch.py`: file to execute the camera drivers, using `v4l2_camera` package. If not necessary, it can be disabled using the `include_camera` parameter. - `rplidar.launch.py`: file to execute the drivers of the RP 2D LiDAR attached to the robot. If not necessary, it can be disabled using the `include_rplidar` parameter. ### Other launch files included -These launch files are included just in case we want to command the robot in different ways, or visualize the information: +These launch files are included just in case you want to command the robot in different ways, or visualize the information: - `rosbag_record.launch.py`: executes the `ros2 bag record` command to store a '.bag' file with the specified topics. If no topics are specified, it will record all of them. -- `rviz.launch.py`: executes the RViz visualization tool with the 'andino.rviz' configuration by default, to be able to visualize the 3D model of the robot and information form the topics. +- `rviz.launch.py`: executes the RViz visualization tool with the 'andino.rviz' configuration by default, to be able to visualize the 3D model of the robot and information from the topics. - `teleop_joystick.launch.py`: this file allows you to command the robot using a controller with a joystick, using the `teleop_twist_joy` and the `joy_linux` packages. - `teleop_keyboard.launch.py`: this file allows you to command the robot using a keyboard, using the `teleop_twist_keyboard` package.