mirror of
https://github.com/eclipse/upm.git
synced 2025-06-12 08:10:24 +03:00

This driver was developed using the Veris HD2NVSTA1 humidity transmitter. The 'T' variant supports a temperature transmitter as well. Both signals are provided by the device as analog 0-5Vdc or 0-10Vdc outputs. The A1 variant supports a temperature range of -40C-50C, while the A2 variant supports a range of 0C-50C. Humidity ranges for all devices in this device family range from 0% to 100% (non-condensing). Temperature measurement can be disabled by passing -1 as the temperature analog pin to the constructor. Signed-off-by: Jon Trulson <jtrulson@ics.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
22 lines
404 B
OpenEdge ABL
22 lines
404 B
OpenEdge ABL
%module javaupm_hdxxvxta
|
|
%include "../upm.i"
|
|
%include "std_string.i"
|
|
|
|
%{
|
|
#include "hdxxvxta.h"
|
|
%}
|
|
|
|
%include "hdxxvxta.h"
|
|
|
|
|
|
%pragma(java) jniclasscode=%{
|
|
static {
|
|
try {
|
|
System.loadLibrary("javaupm_hdxxvxta");
|
|
} catch (UnsatisfiedLinkError e) {
|
|
System.err.println("Native code library failed to load. \n" + e);
|
|
System.exit(1);
|
|
}
|
|
}
|
|
%}
|