edu.wpi.SimplePacketComs.phy.HIDfactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SimplePacketComsJava-HID Show documentation
Show all versions of SimplePacketComsJava-HID Show documentation
A simple packet communication library using HID
package edu.wpi.SimplePacketComs.phy;
public class HIDfactory {
public static HIDSimplePacketComs get(int vidIn, int pidIn) {
return new HIDSimplePacketComs(vidIn, pidIn);
}
public static HIDSimplePacketComs get() {
return new HIDSimplePacketComs();
}
}