Updating a Launch file to look at a Publisher
I am trying to get Lidar (Neato) and mapping (Hector) working together, this has been done here https://github.com/njzhangyifei/xv11-...
I have got this working but the launch file looks directly at the USB port ( https://github.com/njzhangyifei/xv11-... )
<node pkg="xv_11_laser_driver" type="neato_laser_publisher" name="xv_11_node">
<!--<param name="port" value="/dev/tty.usbserial-A9UXLBBR"/>-->
<param name="port" value="/dev/tty.LIDAR-DevB"/>
<param name="firmware_version" value="2"/>
<param name="frame_id" value="laser"/>
</node>
However I now have my Lidar working on my robot and running ROS (RVIZ) on my Desktop and so the port is on a different machine (ROS_MASTER_URI is all setup)
How do I update the Launch file to look at the remote robot for the Lidar Node?