purejavacomm.ParallelPortEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of filo-firmata Show documentation
Show all versions of filo-firmata Show documentation
FiloFirmata is a client library for the Firmata protocol used with hardware project boards.
package purejavacomm;
public class ParallelPortEvent {
public static final int PAR_EV_ERROR = 1;
public static final int PAR_EV_BUFFER = 2;
int eventType;
int getEventType() {
return eventType;
}
boolean getNewValue() {
return false;
}
boolean getOldValue() {
return false;
}
}