upm/src/htu21d/javaupm_htu21d.i

22 lines
446 B
OpenEdge ABL

%module javaupm_htu21d
%include "../upm.i"
%include "typemaps.i"
%ignore getHumidityData(float*, float*, float*);
%{
#include "htu21d.hpp"
%}
%include "htu21d.hpp"
%pragma(java) jniclasscode=%{
static {
try {
System.loadLibrary("javaupm_htu21d");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load. \n" + e);
System.exit(1);
}
}
%}