Implements ROS2 node for RPLIDAR A1M8 obstacle detection with: - Emergency stop at 0.5m - Speed-dependent safety zone (3m @ 20km/h, scales linearly) - Forward-facing 60° obstacle cone scanning - Publishes /saltybot/obstacle_alert and /cmd_vel_safe - Debounced obstacle detection (2 frames) - JSON status reporting Launch: ros2 launch saltybot_lidar_avoidance lidar_avoidance.launch.py Config: config/lidar_avoidance_params.yaml Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
30 lines
968 B
XML
30 lines
968 B
XML
<?xml version="1.0"?>
|
|
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
|
<package format="3">
|
|
<name>saltybot_lidar_avoidance</name>
|
|
<version>0.1.0</version>
|
|
<description>
|
|
360° LIDAR obstacle avoidance for SaltyBot using RPLIDAR A1M8.
|
|
Publishes local costmap, obstacle alerts, and filtered cmd_vel with emergency stop.
|
|
</description>
|
|
<maintainer email="sl-controls@saltylab.local">sl-controls</maintainer>
|
|
<license>MIT</license>
|
|
|
|
<depend>rclpy</depend>
|
|
<depend>geometry_msgs</depend>
|
|
<depend>sensor_msgs</depend>
|
|
<depend>std_msgs</depend>
|
|
<depend>nav_msgs</depend>
|
|
|
|
<buildtool_depend>ament_python</buildtool_depend>
|
|
|
|
<test_depend>ament_copyright</test_depend>
|
|
<test_depend>ament_flake8</test_depend>
|
|
<test_depend>ament_pep257</test_depend>
|
|
<test_depend>python3-pytest</test_depend>
|
|
|
|
<export>
|
|
<build_type>ament_python</build_type>
|
|
</export>
|
|
</package>
|