import java.io.IOException;
import jd2xx.JD2XX;
public class Main {
public static void main(String[] args) throws IOException {
System.out.println("Made By Roman");
// Create a JD2XX object
JD2XX usb4Relay = new JD2XX();
usb4Relay.open(0);
usb4Relay.close();
}
}
This code works perfectly for me and turning on the relay( and the light)
but I got 4 controler on my relay and this code turn on all of tham ,
how to select which one to turn on?
and how to turn off the light .
thanks in advance!!!