This commit adds support for following sensors: MMA8652 , MMA8653, MMA8451 , MMA8452 , MMA8453 These sensors are three-axis accelerometer. Signed-off-by: Norbert Wesp <nwesp@phytec.de> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
16 lines
246 B
OpenEdge ABL
16 lines
246 B
OpenEdge ABL
// Include doxygen-generated documentation
|
|
%include "pyupm_doxy2swig.i"
|
|
%module pyupm_mma8x5x
|
|
%include "../upm.i"
|
|
|
|
%feature("autodoc", "3");
|
|
|
|
#ifdef DOXYGEN
|
|
%include "mma8x5x_doc.i"
|
|
#endif
|
|
|
|
%include "mma8x5x.hpp"
|
|
%{
|
|
#include "mma8x5x.hpp"
|
|
%}
|