Hey,
I am looking for a detailed documentation of Gazebo Harmonic plugins.
It would be great to have a list of all available plugins and a documentation on how to implement them.
I can only find some examples in a tutorial style. See: Sensors — Gazebo harmonic documentation (gazebosim.org).
For me, it is sometimes very unclear how to implement the plugins, since in the course the code examples are for Ignition Gazebo, but I want to use Gazebo Harmonic.
For example in the course we have:
<!-- IMU Plugin -->
<gazebo>
<plugin
filename="libignition-gazebo-imu-system.so"
name="ignition::gazebo::systems::Imu">
</plugin>
</gazebo>
and I somehow found the correct way to do it for ROS 2 Humble + Gazebo Harmonic (that’s what I am using on my PC):
<!-- IMU Plugin -->
<gazebo>
<plugin
filename="gz-sim-imu-system"
name="gz::sim::systems::Imu">
</plugin>
</gazebo>
I found this through the tutorial I mentioned before, but a tutorial is not a full documentation…
For example, for another project I would like to implement a GPS sensor and the Ackermann steering system, but I cannot find a documentation on how to implement this in Gazebo Harmonic.
Can anyone share a link with a proper list of plugins and explanations about the implementation considering the version?