mirror of
https://github.com/bjoernellens1/cps_loki_bringup.git
synced 2024-11-22 15:43:48 +00:00
added lidar node
This commit is contained in:
parent
f31b49ba66
commit
e48d815beb
@ -12,10 +12,13 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
|
import os
|
||||||
from launch import LaunchDescription
|
from launch import LaunchDescription
|
||||||
from launch.substitutions import Command, FindExecutable, PathJoinSubstitution
|
from launch.substitutions import Command, FindExecutable, PathJoinSubstitution
|
||||||
from launch_ros.actions import Node
|
from launch_ros.actions import Node
|
||||||
from launch_ros.substitutions import FindPackageShare
|
from launch_ros.substitutions import FindPackageShare
|
||||||
|
from ament_index_python.packages import get_package_share_directory
|
||||||
|
from launch_ros.actions import LifecycleNode
|
||||||
|
|
||||||
|
|
||||||
def generate_launch_description():
|
def generate_launch_description():
|
||||||
@ -83,6 +86,17 @@ def generate_launch_description():
|
|||||||
executable="cam_node"
|
executable="cam_node"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
lidar_dir = os.path.join(get_package_share_directory('lslidar_driver'), 'params', 'lsx10.yaml')
|
||||||
|
|
||||||
|
lidar_node = LifecycleNode(package='lslidar_driver',
|
||||||
|
executable='lslidar_driver_node',
|
||||||
|
name='lslidar_driver_node',
|
||||||
|
output='screen',
|
||||||
|
emulate_tty=True,
|
||||||
|
namespace='',
|
||||||
|
parameters=[lidar_dir],
|
||||||
|
)
|
||||||
|
|
||||||
return LaunchDescription([
|
return LaunchDescription([
|
||||||
control_node,
|
control_node,
|
||||||
robot_state_pub_node,
|
robot_state_pub_node,
|
||||||
@ -90,5 +104,6 @@ def generate_launch_description():
|
|||||||
robot_controller_spawner,
|
robot_controller_spawner,
|
||||||
joystick_spawner,
|
joystick_spawner,
|
||||||
teleop_spawner,
|
teleop_spawner,
|
||||||
cam_node
|
cam_node,
|
||||||
|
lidar_node
|
||||||
])
|
])
|
Loading…
Reference in New Issue
Block a user