Skip to content

InOrbit Robot SDK C++ header-only library and examples

License

Notifications You must be signed in to change notification settings

inorbit-ai/robot-sdk-cpp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

InOrbit Robot SDK C++ Library

The InOrbit Robot SDK C++11 header-only library allows C++ programs to communicate with the InOrbit Agent, that also runs on the robot. It's goal is to ease the integration between InOrbit and any other custom software running on the robot.

The following example shows how to use the library to send custom data and poses to the Agent:

#include "include/inorbit/inorbit.hpp"

// Create an InOrbitSDK object
inorbit::InOrbitSDK sdk;

// Publish custom data of different types: string, double, integer
sdk.sendKeyValue("vendor", "Spoonlift");
sdk.sendKeyValue("battery", 0.56);
sdk.sendKeyValue("pending_tasks", 5);

// Publish the pose
double location[] = {5, 4, 0};
double rotation_quaternion[] = {0, 0, -0.131, 0.991};
sdk.sendPose("my_reference_frame", location, rotation_quaternion);

When running this program, the Agent takes care of reporting the data to the InOrbit Platform in the cloud.

Including the Library in a Project

This library can be included in any C++11 project. To do so, you have to copy include/inorbit to your project and include the inorbit.hpp file from your files.

Examples

To illustrate how the SDK library can be used the following examples are provided:

  • example.cpp: uses a small set of functions for sending data to InOrbit.
  • demo/demo.cpp: more comprehensive demo using synthetic data and InOrbit's Maps API.

About

InOrbit Robot SDK C++ header-only library and examples

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages