Skip to content

Medusa Gimmicks Library

Description

Collection of methods to ease the use of ROS diagnostics package.


Important Sources

The library was built following the steps in this link Also an important note about implementing template methods here. Basically this avoids linking errors with the library.


How to use the library in a new node

CmakeLists.txt

Add library to find package

find_package(catkin REQUIRED COMPONENTS
  roscpp
  medusa_diagnostics_lirabry
)

package.xml

Add the following

<depend>medusa_diagnostics_lirabry</depend>

Include the library in your new node

#include <medusa_diagnostics_library/MedusaDiagnostics.h>

Use in your code

MedusaDiagnostics::method_to_use(...)

Package Content

medusa_diagnostics_library struct

Code documentation

source


Last update: May 30, 2022
Back to top