upm: enable LIDAR-Lite V3 Optical Distance Measurement sensor library

and example

LIDAR-Lite v3, a compact, high-performance optical distance measurement
sensor from Garmin™. It is the ideal solution for drone, robot or unmanned
vehicle applications.

The library provided is libupm-lidarlitev3.so
The example provided is lidarlitev3.cxx where it will print the distance
of object/obstacle from the sensor.

The image of the sensor is at docs/images/lidarlitev3.jpg

Signed-off-by: Saloni Jain <saloni.jain@tcs.com>
Signed-off-by: Niti Rohilla <niti.rohilla@tcs.com>
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
This commit is contained in:
Niti Rohilla
2017-04-07 09:58:26 +00:00
committed by Abhishek Malik
parent a56b83fa37
commit 07f3029f10
8 changed files with 410 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
// Include doxygen-generated documentation
%include "pyupm_doxy2swig.i"
%module pyupm_lidarlitev3
%include "../upm.i"
%include "stdint.i"
%feature("autodoc", "3");
%include "lidarlitev3.hpp"
%{
#include "lidarlitev3.hpp"
%}