i done with my simulation part with ros. but now i dont know how to strat with hardware ? how do i interface my ros programe to my real robot ? pl.help me

asked 2020-01-12 13:34:49 -0500

akshay bankar gravatar image

i amb.tech pursuing student Andi successfully completed my ros course on udemy but now i want to know how to interface ros with hardware

edit retag flag offensive close merge delete

Comments

Well that depends on the hardware you have. For the most common sensors, drivers will exist that detect the device is connected and publish their data as a ROS message (i.e. rplidar, realsense camera). Similarly, for actuators there are packages like ros_canopen that are used when the hardware is connected through for instance a CANbus. I would recommend just searching for hardware online or looking into the turtlebot as an example. If you already have hardware and drivers don't exist then you will have to create the driver yourself. This usually comes down to writing code in C or C++ that reads and writes to/from a port on your board/computer and publishing the data as a ros-message or translating a the information from a ros-message to the hardware's protocol.

MCornelis gravatar image MCornelis  ( 2020-01-13 06:41:03 -0500 )edit

Thanks for the suggestion

akshay bankar gravatar image akshay bankar  ( 2021-05-28 19:59:38 -0500 )edit