This commit is contained in:
manzerbredes 2016-03-29 15:54:06 +02:00
parent 41a9c74d35
commit 7a85f7e089
3 changed files with 6 additions and 26 deletions

View file

@ -17,7 +17,7 @@ public interface Driver{
public Class<?> getType(); public Class<?> getType();
/** /**
* Initialise the driver (do not initialise anything in the constructor). * Initialize the driver (do not initialize anything in the constructor).
* *
* @return true if success (device is present and accessible) false else. * @return true if success (device is present and accessible) false else.
*/ */

View file

@ -10,14 +10,13 @@ package org.manzerbredes.open_klm.drivers;
public class DriverManager{ public class DriverManager{
/** /**
* List of avalaible drivers * List of available drivers
*/ */
private Class<?>[] drivers={ private Class<?>[] drivers={
Driver_1770_ff00.class Driver_1770_ff00.class
}; };
/** /**
* Get a successfully loaded driver * Get a successfully loaded driver
* *
@ -36,13 +35,7 @@ public class DriverManager{
e.printStackTrace(); e.printStackTrace();
} }
} }
// If no driver avalaible // If no driver available
return null; return null;
} }
} }

View file

@ -16,8 +16,6 @@ import com.codeminders.hidapi.*;
*/ */
public class Driver_1770_ff00 implements Driver, DriverTypeA{ public class Driver_1770_ff00 implements Driver, DriverTypeA{
/** /**
* Device entry * Device entry
*/ */
@ -67,22 +65,11 @@ public class Driver_1770_ff00 implements Driver, DriverTypeA{
* @return * @return
*/ */
private byte[] getReport(int a, int b, int c, int d, int e, int f, int g, int h){ private byte[] getReport(int a, int b, int c, int d, int e, int f, int g, int h){
byte[] message = new byte[8]; byte[] report={(byte) a,(byte) b,(byte) c,(byte) d,(byte) e,(byte) f,(byte) g,(byte) h};
message[0] = (byte) a; return report;
message[1] = (byte) b;
message[2] = (byte) c;
message[3] = (byte) d;
message[4] = (byte) e;
message[5] = (byte) f;
message[6] = (byte) g;
message[7] = (byte) h;
return message;
} }
/** /**
* Commit (apply current mode to update the color) * Commit (apply current mode to update the color)
*/ */