-
Notifications
You must be signed in to change notification settings - Fork 0
/
launch.hailbopp_full.py
47 lines (39 loc) · 1.3 KB
/
launch.hailbopp_full.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from os import name, path, environ
import sys
from launch.launch_description_sources import PythonLaunchDescriptionSource
from launch.actions import IncludeLaunchDescription
from launch import LaunchDescription
from launch.actions import DeclareLaunchArgument
from launch.actions import ExecuteProcess
from launch.conditions import IfCondition
from launch.substitutions import LaunchConfiguration
from launch_ros.actions import Node
from ament_index_python import get_package_share_directory
sys.path.append(path.abspath('/vehicle_interface/'))
from launch_node_definitions import *
def generate_launch_description():
return LaunchDescription([
hailbopp_urdf_publisher,
clock,
# ACTUATION INTERFACE
hailbopp_epas,
# hailbopp_mcu,
# hailbopp_linear_actuator,
# SENSOR INTERFACE
joystick_microsoft,
# #camera,
gnss,
# Old lidar (left and right):
# lidar_driver_left,
# lidar_pointcloud_left,
# lidar_driver_right,
# lidar_pointcloud_right,
# New lidar(one on the roof rack):
lidar_ouster_driver,
sensor_configure_event,
sensor_activate_event,
sensor_finalized_event,
lidar_ouster_processor,
# radar_processor,
rviz,
])