2023-07-28 09:07:50 +00:00
|
|
|
from launch import LaunchDescription
|
|
|
|
from launch_ros.actions import Node
|
|
|
|
from launch.substitutions import LaunchConfiguration
|
|
|
|
from launch.actions import DeclareLaunchArgument
|
|
|
|
|
|
|
|
def generate_launch_description():
|
|
|
|
use_sim_time = LaunchConfiguration('use_sim_time')
|
|
|
|
|
|
|
|
control_node = Node(
|
|
|
|
package='segwayrmp',
|
|
|
|
executable='SmartCar',
|
|
|
|
name='SmartCar',
|
2023-08-09 09:50:17 +00:00
|
|
|
#remappings=[('cmd_vel','cmd_vel_out'), ('/odom','odom'), ('/imu','imu'), ('/bms_fb','bms_fb'), ('/joint_states','joint_states'), ('/tf','tf'), ('/tf_static','tf_static')],
|
|
|
|
remappings=[('cmd_vel','cmd_vel_out')],
|
2023-08-08 09:01:49 +00:00
|
|
|
#namespace = "/rmp"
|
2023-09-05 09:09:06 +00:00
|
|
|
parameters=[{'serial_full_name': /dev/ttyUSB0}],
|
2023-07-28 09:07:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
return LaunchDescription([
|
|
|
|
DeclareLaunchArgument(
|
|
|
|
'use_sim_time',
|
|
|
|
default_value='false',
|
|
|
|
description='Use sim time if true'),
|
|
|
|
control_node
|
|
|
|
])
|