First commit 15/07/2025
This commit is contained in:
16
src/CRSDK/CrTouchOperation.java
Normal file
16
src/CRSDK/CrTouchOperation.java
Normal file
@@ -0,0 +1,16 @@
|
||||
package CRSDK;
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public enum CrTouchOperation {
|
||||
CrTouchOperation_Off (0x01),
|
||||
CrTouchOperation_On (CrTouchOperation_Off.getValue()+1),
|
||||
CrTouchOperation_PlaybackOnly (CrTouchOperation_Off.getValue()+2);
|
||||
|
||||
private final CrInt8u value;
|
||||
CrTouchOperation(int value) {
|
||||
this.value = new CrInt8u(value);
|
||||
}
|
||||
public int getValue() {
|
||||
return value.intValue();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user