package org.manzerbredes.open_klm.device; /** * * Driver to communicate with the keyboard device * using HIDAPI. * * @author Manzerbredes * */ public class Driver{ /** * Init driver and HIDAPI library */ public Driver(){ // Init HIDAPI Library com.codeminders.hidapi.ClassPathLibraryLoader.loadNativeHIDLibrary(); } }