sources.Aio Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mraa Show documentation
Show all versions of mraa Show documentation
Low Level Skeleton Library for IO Communication on GNU/Linux platforms
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 3.0.6
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
package mraa;
public class Aio {
private long swigCPtr;
protected boolean swigCMemOwn;
protected Aio(long cPtr, boolean cMemoryOwn) {
swigCMemOwn = cMemoryOwn;
swigCPtr = cPtr;
}
protected static long getCPtr(Aio obj) {
return (obj == null) ? 0 : obj.swigCPtr;
}
protected void finalize() {
delete();
}
public synchronized void delete() {
if (swigCPtr != 0) {
if (swigCMemOwn) {
swigCMemOwn = false;
mraaJNI.delete_Aio(swigCPtr);
}
swigCPtr = 0;
}
}
public Aio(int pin) {
this(mraaJNI.new_Aio(pin), true);
}
public long read() {
return mraaJNI.Aio_read(swigCPtr, this);
}
public float readFloat() {
return mraaJNI.Aio_readFloat(swigCPtr, this);
}
public Result setBit(int bits) {
return Result.swigToEnum(mraaJNI.Aio_setBit(swigCPtr, this, bits));
}
public int getBit() {
return mraaJNI.Aio_getBit(swigCPtr, this);
}
}