This guide showcases how you can modify the definitions (e.g. range_min) of the LaserScan message published to the /scan topic. It is also a brief “guide” on how to access and modify files on a Turtlebot.
Turtlebot’s LaserScan message is specified by the ld08_driver.cpp file from this repo: https://github.com/ROBOTIS-GIT/ld08_driver/tree/develop/src. You can modify this file on your Turtlebot through a terminal on vnc.
cd catkin_ws/src/ld08_driver/src
nano ld08_driver.cpp
scan.range_min = 0.0;
ctrl + S to save, ctrl + X to exit the editor
cm