Skip to content
Merged
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
7 changes: 0 additions & 7 deletions delta_robot/launch/delta_motion_planner.launch.xml

This file was deleted.

58 changes: 57 additions & 1 deletion delta_robot/launch/delta_robot.launch.py
Original file line number Diff line number Diff line change
@@ -1 +1,57 @@
# Launch file for Delta Robot
from launch import LaunchDescription
from launch_ros.actions import Node
from launch.actions import IncludeLaunchDescription
from launch.launch_description_sources import AnyLaunchDescriptionSource
from ament_index_python.packages import get_package_share_directory
from launch.substitutions import PathJoinSubstitution


def generate_launch_description():
return LaunchDescription([
Node(
package='delta_robot',
executable='kinematics',
name='kinematics',
output='screen',
parameters=[
PathJoinSubstitution([
get_package_share_directory('delta_robot'),
'config',
'delta_config.yaml'
])
],
),
Node(
package='delta_robot',
executable='motion_planner',
name='motion_planner',
output='screen',
),
Node(
package='delta_robot',
executable='motor_controller',
name='motor_controller',
output='screen',
),
Node(
package='delta_robot',
executable='range_scanner',
name='range_scanner',
output='screen',
),
Node(
package='delta_robot',
executable='trajectory_generator',
name='trajectory_generator',
output='screen',
),
IncludeLaunchDescription(
AnyLaunchDescriptionSource(
PathJoinSubstitution([
get_package_share_directory('delta_robot_sensors'),
'launch',
'sensors.launch.xml'
])
)
)
])
5 changes: 0 additions & 5 deletions delta_robot/launch/kinematics.launch.xml

This file was deleted.

3 changes: 0 additions & 3 deletions delta_robot/launch/motor_control.launch.xml

This file was deleted.

3 changes: 0 additions & 3 deletions delta_robot/launch/traj_gen.launch.xml

This file was deleted.