How to create custom topic?
I want to create custom topic to visualize data from sensors.
I want to create custom topic to visualize data from sensors.
Create a gazebo node:
gznode_ = gazebo::transport::NodePtr(new gazebo::transport::Node());
and advertise a new publisher:
pub = gznode_->Advertise<gazebo::msgs::"message_type">("custom_topic_name");
change "message_type" and custom_topic_name to your own needs. Now you can publish a message by:
pub->Publish(msg);
The types depend on the Gazebo Version you are using. For all versions < 9 you need to include:
#include "gazebo/transport/transport.hh"
and the variable declaration look like this:
gazebo::transport::NodePtr gznode_;
gazebo::transport::PublisherPtr pub;
Asked: 2018-07-11 08:34:03 -0500
Seen: 450 times
Last updated: Aug 15 '18
Information from Topic Visualization to a text file ?
how can I add Gauss white noise to a topic
Publish message from the command line
Are there any default model topics?
Subscribe to gz topic from ROS2
Storing/Logging Model Joint Position/Velocity
How can I publish to a Gazebo Topic from Python
what are the topics that fly a Hector_quadrotor?