Skip to content

Commit

Permalink
remove extra launch files
Browse files Browse the repository at this point in the history
  • Loading branch information
PetoAdam committed Sep 18, 2024
1 parent 3a69b00 commit a1cc0ee
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 402 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,7 @@
from launch_ros.actions import Node
from ament_index_python.packages import get_package_share_directory
from moveit_configs_utils import MoveItConfigsBuilder
from launch.actions.include_launch_description import IncludeLaunchDescription
from launch.actions import DeclareLaunchArgument, OpaqueFunction
from launch.launch_description_sources.python_launch_description_source import (
PythonLaunchDescriptionSource,
)
from launch.substitutions import LaunchConfiguration


Expand Down Expand Up @@ -86,13 +82,6 @@ def launch_setup(context, *args, **kwargs):
parameters=[moveit_config.to_dict(), move_group_capabilities],
)

startup_launch = IncludeLaunchDescription(
PythonLaunchDescriptionSource(
[get_package_share_directory("kuka_iiqka_eac_driver"), "/launch/startup.launch.py"]
),
launch_arguments={"use_fake_hardware": "true"}.items(),
)

# MTC Demo node
mtc_demo = Node(
package="kuka_moveit_task_constructor_depalletizing",
Expand All @@ -103,7 +92,7 @@ def launch_setup(context, *args, **kwargs):
],
)

to_start = [move_group_server, startup_launch, mtc_demo]
to_start = [move_group_server, mtc_demo]

return to_start

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,7 @@
from launch_ros.actions import Node
from ament_index_python.packages import get_package_share_directory
from moveit_configs_utils import MoveItConfigsBuilder
from launch.actions.include_launch_description import IncludeLaunchDescription
from launch.actions import DeclareLaunchArgument, OpaqueFunction
from launch.launch_description_sources.python_launch_description_source import (
PythonLaunchDescriptionSource,
)
from launch.substitutions import LaunchConfiguration


Expand Down Expand Up @@ -104,13 +100,6 @@ def launch_setup(context, *args, **kwargs):
],
)

startup_launch = IncludeLaunchDescription(
PythonLaunchDescriptionSource(
[get_package_share_directory("kuka_iiqka_eac_driver"), "/launch/startup.launch.py"]
),
launch_arguments={"use_fake_hardware": "true"}.items(),
)

# MTC Demo node
mtc_demo = Node(
package="kuka_moveit_task_constructor_depalletizing",
Expand All @@ -121,7 +110,7 @@ def launch_setup(context, *args, **kwargs):
],
)

to_start = [move_group_server, rviz, startup_launch, mtc_demo]
to_start = [move_group_server, rviz, mtc_demo]

return to_start

Expand Down

This file was deleted.

Loading

0 comments on commit a1cc0ee

Please sign in to comment.