summaryrefslogtreecommitdiff
path: root/src/device/Keyboard.java
blob: 58e6dd6106f9155b6fdf5835797d2e625b5a9ca4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
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;
		}
	}


	
	
}