Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Launchcompatible with ros2 humble #14

Open
wants to merge 3 commits into
base: eloquent-devel
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Tutorial_Lidar_Tobias.odt
Binary file not shown.
15 changes: 9 additions & 6 deletions slam_gmapping/launch/slam_gmapping.launch.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
from launch import LaunchDescription
from launch.substitutions import EnvironmentVariable
import launch.actions
import launch_ros.actions
from launch.substitutions import LaunchConfiguration
from launch_ros.actions import Node


def generate_launch_description():
use_sim_time = launch.substitutions.LaunchConfiguration('use_sim_time', default='true')
use_sim_time = LaunchConfiguration('use_sim_time', default='true')
return LaunchDescription([
launch_ros.actions.Node(
package='slam_gmapping', node_executable='slam_gmapping', output='screen', parameters=[{'use_sim_time':use_sim_time}]),
Node(
package='slam_gmapping',
executable='slam_gmapping',
output='screen',
parameters=[{'use_sim_time': use_sim_time}]
),
])