ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Well, you would need to write a driver listening to the network stream and publishing the lidar data as a LaserScan
message.
Basically, this is a simple program (ROS node), that reads this data, puts it in a member of the type sensor_msgs::LaserScan
, publishes this data, and this is it.
Check out this question here about writing hardware drivers....