cnc-graver-assist/rbs_mill_assist/launch/bt_executor.launch.py
Bill Finger e268a556b5 Add pickable object service and update world setup
- Create a service node to provide information about available objects for picking
- Update the Gazebo world with multiple shildik models arranged vertically
- Add a laser sensor to the environment
- Disable the bunker model inclusion
2025-03-02 14:43:09 +03:00

23 lines
744 B
Python

from launch import LaunchDescription
from launch.actions import DeclareLaunchArgument
from launch_ros.actions import Node
from launch.substitutions import LaunchConfiguration, PathJoinSubstitution
from launch_ros.substitutions import FindPackageShare
def generate_launch_description():
executor_params = PathJoinSubstitution([FindPackageShare("rbs_mill_assist"), "config", "bt_executor.yaml"])
nodes_to_start = [
Node(
package='rbs_bt_executor',
executable='rbs_bt_executor',
# prefix=['gdbserver localhost:1234'],
parameters=[
executor_params,
{'use_sim_time': True}
],
)
]
return LaunchDescription(nodes_to_start)