refactoring repo

This commit is contained in:
Ilya Uraev 2023-07-26 14:20:06 +03:00
parent 6fa469be36
commit f76340d78a
68 changed files with 5 additions and 6275 deletions

View file

@ -0,0 +1,27 @@
from launch_ros.actions import Node
from ur_moveit_config.launch_common import load_yaml
from launch import LaunchDescription
def generate_launch_description():
declared_arguments = []
points_params = load_yaml("rbs_bt_executor", "config/gripperPositions.yaml")
grasp_pose_loader = Node(
package="rbs_skill_servers",
executable="pick_place_pose_loader_service_server",
output="screen",
emulate_tty=True,
parameters=[
points_params
]
)
grasp_marker = Node(
package="rbs_perception",
executable="grasp_marker_publish.py",
)
nodes_to_start = [
grasp_pose_loader,
grasp_marker
]
return LaunchDescription(declared_arguments + nodes_to_start)