tmp006: Added upm support for sensor TMP006

TMP006 is a infrared-thermopile sensor.

Signed-off-by: Norbert Wesp <nwesp@phytec.de>
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
This commit is contained in:
Norbert Wesp
2017-02-14 11:59:01 +01:00
committed by Mihai Tudor Panu
parent e83b8ef114
commit 8342b4c079
10 changed files with 628 additions and 0 deletions

15
src/tmp006/pyupm_tmp006.i Normal file
View File

@ -0,0 +1,15 @@
// Include doxygen-generated documentation
%include "pyupm_doxy2swig.i"
%module pyupm_tmp006
%include "../upm.i"
%feature("autodoc", "3");
#ifdef DOXYGEN
%include "tmp006_doc.i"
#endif
%include "tmp006.hpp"
%{
#include "tmp006.hpp"
%}