Initial commit of ADS1x15 adc converter. Support for both ADS1015 12 bit and ADS1115 16 bit adc. --signoff Signed-off-by: Marc Graham <marc@m2ag.net> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
20 lines
228 B
OpenEdge ABL
20 lines
228 B
OpenEdge ABL
%module pyupm_ads1x15
|
|
%include "../upm.i"
|
|
|
|
|
|
%feature("autodoc", "3");
|
|
|
|
%include "ads1x15.h"
|
|
%{
|
|
#include "ads1x15.h"
|
|
%}
|
|
|
|
%include "ads1015.h"
|
|
%{
|
|
#include "ads1015.h"
|
|
%}
|
|
|
|
%include "ads1115.h"
|
|
%{
|
|
#include "ads1115.h"
|
|
%} |