All Downloads are FREE. Search and download functionalities are using the official Maven repository.

purejavacomm.ParallelPortEvent Maven / Gradle / Ivy

Go to download

FiloFirmata is a client library for the Firmata protocol used with hardware project boards.

There is a newer version: 0.1.11
Show newest version
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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy