ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
2 | No.2 Revision |
Of course. You can do that. First I would reccomend you to follow ROS tutorial. Also, you can use your own message types. Follow ROS message tutorials.
You can create your own topics using ROS messages. Also, you can create different topics using same message type. If you need, you can create your own message type as well.
You always subscribe topics published by a subscriber. Not messages. To do that,
whenever the subscriber receives topics, your callback function in the subscriber node is called. Then you can use those data.