Implements ROS2 cliff detector for SaltyBot with: - Subscribes to /saltybot/cliff_sensors (IR range array) - Threshold-based detection (default 0.5m) - Debouncing (3 consecutive frames) for robustness - Majority voting (min 2 sensors) for safety - Publishes Bool on /saltybot/cliff_detected - Emergency stop trigger on cliff/drop-off detection - Includes 15+ unit tests for detection logic Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
22 lines
706 B
XML
22 lines
706 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_cliff_detector</name>
|
|
<version>0.1.0</version>
|
|
<description>Cliff and drop-off detection safety node for SaltyBot</description>
|
|
<maintainer email="sl-controls@saltylab.local">SaltyLab Controls</maintainer>
|
|
<license>MIT</license>
|
|
|
|
<buildtool_depend>ament_python</buildtool_depend>
|
|
<depend>rclpy</depend>
|
|
<depend>sensor_msgs</depend>
|
|
<depend>std_msgs</depend>
|
|
|
|
<test_depend>pytest</test_depend>
|
|
<test_depend>std_msgs</test_depend>
|
|
|
|
<export>
|
|
<build_type>ament_python</build_type>
|
|
</export>
|
|
</package>
|