NeuronRobotics / nrjavaserial

A Java Serial Port system. This is a fork of the RXTX project that uses in jar loading of the native code.
Other
345 stars 143 forks source link

Installation instructions? #63

Closed william-ferguson-au closed 4 years ago

william-ferguson-au commented 8 years ago

I'm trying to get nrjavaserial up and running on Windows10 but am not having much luck. Is there any special install routine that is required or is it enough to include the nrjavaserial.jar in the classpath?

The following app completes without finding any serial ports.

public class App {
    public static void main(String[] args) throws IOException {
        for(String s: NRSerialPort.getAvailableSerialPorts()){
            System.out.println("Available port: "+s);
        }
    }
}