Skip to content

Commit

Permalink
Merge pull request ROBOTIS-GIT#827 from ROBOTIS-GIT/master
Browse files Browse the repository at this point in the history
lds-02 support
  • Loading branch information
ROBOTIS-Will authored Feb 8, 2022
2 parents 22a57f2 + 8b4adf4 commit 07ba4fd
Show file tree
Hide file tree
Showing 20 changed files with 55 additions and 15 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ros-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,11 @@ jobs:
with:
path: ros_ws/src
- name: Setup ROS environment
uses: ros-tooling/setup-ros@0.1.2
uses: ros-tooling/setup-ros@0.2.1
with:
required-ros-distributions: ${{ matrix.ros_distribution }}
- name: Setuptools workaround
run: export SETUPTOOLS_USE_DISTUTILS=stdlib
- name: Build and Test
uses: ros-tooling/[email protected]
with:
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

[![foxy-devel Status](https://github.com/ROBOTIS-GIT/turtlebot3/workflows/foxy-devel/badge.svg)](https://github.com/ROBOTIS-GIT/turtlebot3/tree/foxy-devel)

[![galactic-devel Status](https://github.com/ROBOTIS-GIT/turtlebot3/workflows/galactic-devel/badge.svg)](https://github.com/ROBOTIS-GIT/turtlebot3/tree/galactic-devel)

## ROBOTIS e-Manual for TurtleBot3
- [ROBOTIS e-Manual for TurtleBot3](http://turtlebot3.robotis.com/)

Expand Down
4 changes: 4 additions & 0 deletions turtlebot3/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
Changelog for package turtlebot3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

1.2.6 (2022-02-07)
------------------
* add LDS-02 support

1.2.5 (2020-12-30)
------------------
* Python 2/3 compatibility fix
Expand Down
2 changes: 1 addition & 1 deletion turtlebot3/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>turtlebot3</name>
<version>1.2.5</version>
<version>1.2.6</version>
<description>
ROS packages for the Turtlebot3 (meta package)
</description>
Expand Down
4 changes: 4 additions & 0 deletions turtlebot3_bringup/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
Changelog for package turtlebot3_bringup
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

1.2.6 (2022-02-07)
------------------
* add LDS-02 support

1.2.5 (2020-12-30)
------------------
* No Changes
Expand Down
16 changes: 12 additions & 4 deletions turtlebot3_bringup/launch/turtlebot3_lidar.launch
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
<launch>
<arg name="set_frame_id" default="base_scan"/>
<arg name="lds_model" default="$(env LDS_MODEL)" doc="LDS MODEL [LDS-01, LDS-02]"/>

<node pkg="hls_lfcd_lds_driver" type="hlds_laser_publisher" name="turtlebot3_lds" output="screen">
<param name="port" value="/dev/ttyUSB0"/>
<param name="frame_id" value="$(arg set_frame_id)"/>
</node>
<group if = "$(eval lds_model == 'LDS-01')">
<node pkg="hls_lfcd_lds_driver" type="hlds_laser_publisher" name="turtlebot3_lds" output="screen">
<param name="port" value="/dev/ttyUSB0"/>
<param name="frame_id" value="$(arg set_frame_id)"/>
</node>
</group>
<group if = "$(eval lds_model == 'LDS-02')">
<node pkg="ld08_driver" type="ld08_driver" name="turtlebot3_lds" output="screen" args="LD08">
<param name="frame_id" value="$(arg set_frame_id)"/>
</node>
</group>
</launch>
2 changes: 1 addition & 1 deletion turtlebot3_bringup/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>turtlebot3_bringup</name>
<version>1.2.5</version>
<version>1.2.6</version>
<description>
roslaunch scripts for starting the TurtleBot3
</description>
Expand Down
4 changes: 4 additions & 0 deletions turtlebot3_description/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
Changelog for package turtlebot3_description
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

1.2.6 (2022-02-07)
------------------
* No Changes

1.2.5 (2020-12-30)
------------------
* Rectify IMU update rate to 0 on Gazebo
Expand Down
2 changes: 1 addition & 1 deletion turtlebot3_description/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>turtlebot3_description</name>
<version>1.2.5</version>
<version>1.2.6</version>
<description>
3D models of the TurtleBot3 for simulation and visualization
</description>
Expand Down
4 changes: 4 additions & 0 deletions turtlebot3_example/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
Changelog for package turtlebot3_example
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

1.2.6 (2022-02-07)
------------------
* No Changes

1.2.5 (2020-12-30)
------------------
* No Changes
Expand Down
2 changes: 1 addition & 1 deletion turtlebot3_example/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>turtlebot3_example</name>
<version>1.2.5</version>
<version>1.2.6</version>
<description>
This package provides four TurtleBot3 basic example include move using interactive marker, move and stop using LDS, move to goal position, move to custom routes. The interactions node is that you can control the TurtleBot3 front and back side or rotate to goal position. The obstacle node is that when the robot meets an obstacle, it stops. The patrol node is that TurtleBot3 move to custom route. There are 3 route(square, triangle, circle) in this package. You can add your route and move the TurtleBot3. The pointop node is that you can insert goal position include distance x-axis, y-axis and angluar z-axis.
</description>
Expand Down
4 changes: 4 additions & 0 deletions turtlebot3_navigation/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
Changelog for package turtlebot3_navigation
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

1.2.6 (2022-02-07)
------------------
* No Changes

1.2.5 (2020-12-30)
------------------
* No Changes
Expand Down
2 changes: 1 addition & 1 deletion turtlebot3_navigation/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>turtlebot3_navigation</name>
<version>1.2.5</version>
<version>1.2.6</version>
<description>
The turtlebot3_navigation provides roslaunch scripts for starting the navigation.
</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ DWAPlannerROS:
acc_lim_y: 0.0
acc_lim_theta: 3.2

# Goal Tolerance Parametes
# Goal Tolerance Parameters
xy_goal_tolerance: 0.05
yaw_goal_tolerance: 0.17
latch_xy_goal_tolerance: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ DWAPlannerROS:
acc_lim_y: 0.0
acc_lim_theta: 3.2

# Goal Tolerance Parametes
# Goal Tolerance Parameters
xy_goal_tolerance: 0.05
yaw_goal_tolerance: 0.17
latch_xy_goal_tolerance: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ DWAPlannerROS:
acc_lim_y: 0.0
acc_lim_theta: 3.2

# Goal Tolerance Parametes
# Goal Tolerance Parameters
xy_goal_tolerance: 0.05
yaw_goal_tolerance: 0.17
latch_xy_goal_tolerance: false
Expand Down
4 changes: 4 additions & 0 deletions turtlebot3_slam/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
Changelog for package turtlebot3_slam
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

1.2.6 (2022-02-07)
------------------
* No Changes

1.2.5 (2020-12-30)
------------------
* No Changes
Expand Down
2 changes: 1 addition & 1 deletion turtlebot3_slam/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>turtlebot3_slam</name>
<version>1.2.5</version>
<version>1.2.6</version>
<description>
The turtlebot3_slam package provides roslaunch scripts for starting the SLAM
</description>
Expand Down
4 changes: 4 additions & 0 deletions turtlebot3_teleop/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
Changelog for package turtlebot3_teleop
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

1.2.6 (2022-02-07)
------------------
* No Changes

1.2.5 (2020-12-30)
------------------
* Python 2/3 compatibility fix
Expand Down
2 changes: 1 addition & 1 deletion turtlebot3_teleop/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>turtlebot3_teleop</name>
<version>1.2.5</version>
<version>1.2.6</version>
<description>
Provides teleoperation using keyboard for TurtleBot3.
</description>
Expand Down

0 comments on commit 07ba4fd

Please sign in to comment.