summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormanzerbredes <loic.guegan_secondary@yahoo.fr>2016-03-27 11:01:41 +0200
committermanzerbredes <loic.guegan_secondary@yahoo.fr>2016-03-27 11:01:41 +0200
commit2f6e8630795c6de5cbe9aaf937f3b680d20059e1 (patch)
treec5e6c10730d949d6f536fea6787321cc1a2b7523
parent60547cf0b033bcd09fd6e930aba4bc61268ca7e7 (diff)
Create modes
-rw-r--r--src/device/Driver.java22
-rw-r--r--src/device/Keyboard.java82
2 files changed, 104 insertions, 0 deletions
diff --git a/src/device/Driver.java b/src/device/Driver.java
new file mode 100644
index 0000000..25257a7
--- /dev/null
+++ b/src/device/Driver.java
@@ -0,0 +1,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();
+ }
+
+} \ No newline at end of file
diff --git a/src/device/Keyboard.java b/src/device/Keyboard.java
index 6072c81..58e6dd6 100644
--- a/src/device/Keyboard.java
+++ b/src/device/Keyboard.java
@@ -2,5 +2,87 @@ package org.manzerbredes.open_klm.device;
public class Keyboard{
+ /**
+ * Defined Region Helper
+ *
+ * @author Manzerbredes
+ *
+ */
+ public enum Region{
+ LEFT(1), MIDDLE(2), RIGHT(3);
+
+ private int current;
+
+ Region(int current){
+ this.current=current;
+ }
+
+ public int intValue(){
+ return this.current;
+ }
+ }
+
+ /**
+ * Defined Color Helper
+ *
+ * @author Manzerbredes
+ *
+ */
+ public enum Color{
+ OFF(0),RED(1),ORANGE(2),YELLOW(3),GREEN(4),SKY(5), BLUE(6),PURPLE(7),WHITE(8);
+
+ private int current;
+
+ Color(int current){
+ this.current=current;
+ }
+
+ public int intValue(){
+ return this.current;
+ }
+ }
+
+ /**
+ * Defined Level Helper
+ *
+ * @author Manzerbredes
+ *
+ */
+ public enum Intensity{
+ HIGH(0), MEDIUM(1), LOW(2), LIGHT(3);
+
+ private int current;
+
+ Intensity(int current){
+ this.current=current;
+ }
+
+ public int intValue(){
+ return this.current;
+ }
+ }
+
+ /**
+ * Defined Mode Helper
+ *
+ * @author Manzerbredes
+ *
+ */
+ public enum Mode{
+ NORMAL(1), GAMING(2), BREATHE(3), DEMO(4), WAVE(5);
+
+ private int current;
+
+ Mode(int current){
+ this.current=current;
+ }
+
+ public int intValue(){
+ return this.current;
+ }
+ }
+
+
+
} \ No newline at end of file