upm/src/emg/pyupm_emg.i
Noel Eck a19678948b emg: Added emg sensor C source
Added the C source for the emg sensor with necessary changes to cmake,
examples, docs.

    * Renamed all files with groveemg to emg
    * Replaced all instances of groveemg with emg
    * Added C source for emg sensor
    * Updated all cmake files
    * Added C example for emg sensor

Signed-off-by: Noel Eck <noel.eck@intel.com>
2016-09-14 14:08:58 -07:00

12 lines
186 B
OpenEdge ABL

// Include doxygen-generated documentation
%include "pyupm_doxy2swig.i"
%module pyupm_emg
%include "../upm.i"
%feature("autodoc", "3");
%include "emg.hpp"
%{
#include "emg.hpp"
%}