LoginSignup
2
0

More than 3 years have passed since last update.

rosbridge

Reference

overview

rosbridge_overview.png

rosbridge is to connect ROS world to other world such as websocket, so that application in Non-ROS world can communicate ROS world.

message protocol

ROSBRIDGE_PROTOCOL

rosbridge is constructed with major two parts, one is protocol and the other is implementation to convert.

rosbridge uses json format protocol to interact with,

{
  "op": "subscribe",
  "topic": "/cmd_vel",
  "type": "geometry_msgs/Twist"
}

Examples

unfortunately mainline does not have good example but there is one as following.

Note

  • rosbridge is really simple design and does not do much things, but good enough to bridge ROS world to the other side.
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0