개발하는 핑구
article thumbnail
[ROS2 시작하기 - 5] Interface
Robotics/ROS2 2023. 2. 27. 14:15

Create Custom ROS2 Interfaces (Msg and Srv) ROS2 can communicate with interfaces (msg or srv). How is it possible that you can use those interfaces directly in your code? Let’s say you create a message definition inside a package. when you use the colcon build, the message will be passed by the build system. the source code will be generated for this message in any ros2 surpported language C++, ..