summaryrefslogtreecommitdiff
path: root/src/device/Driver.java
blob: 25257a7f954c1580a1e566d27659992cecefae19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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();
	}
	
}