blob: 046646bdbf4d6b5d15a43cd3af9a49023dde9f60 [file] [log] [blame]
%module javaupm_hcsr04
%include "../upm.i"
%{
#include "hcsr04.h"
%}
%include "hcsr04.h"
%pragma(java) jniclasscode=%{
static {
try {
System.loadLibrary("javaupm_hcsr04");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load. \n" + e);
System.exit(1);
}
}
%}