Skip to content

noirb/sigverse-plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

How to use

This repository provides general plugins for getting sensor data from various devices.

Please perform the following steps.

  1. Create SIGVerse plugin(.sig) for getting sensor data.
  2. Create common library(sigplugin.so) for connecting to plugin.
  3. Use the created common library(sigplugin.so) in your controllers, and get sensor data.

Create SIGVerse plugin(.sig) for getting sensor data.

Please open the solution file(.sln) by VisualStudio and build.
Solution files are in under the projects/ directory.

Notes are the following.

  • Have to prepare SIGService.lib.
  • Some projects need OpenCV, boost or various SDK.
  • Please check [Additional Include directories], [Additional Library Directories], [Additional Dependencies], [Post-build Event], and so on.

Create common library(sigplugin.so) for connecting to plugin.

Please perform the following steps.
Created library(sigplugin.so) and headers will copy into an install directory of SIGServer.

  1. Before type following commands, please install SIGServer and set environment variables SIGVERSE_PATH.
  2. mkdir build
  3. cd build
  4. cmake ..
  5. make
  6. make install

Use the created common library(sigplugin.so) in your controllers, and get sensor data.

You can use sigplugin.so in your controllers.
Please add linker flags "-L$(SIGVERSE_PATH)/lib -lsigplugin" into your Makefile.
Sample controllers are in sample_controllers/ directory.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 97.0%
  • Makefile 2.2%
  • Other 0.8%