First commit 14/07/2025

This commit is contained in:
2025-07-14 17:09:40 +07:00
commit 8688286748
96 changed files with 2554 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package CRSDK;
@SuppressWarnings("unused")
public enum DeviceConnectionVersioin {
DEVICE_CONNECTION_VERSION_UNKNOWN(0),
DEVICE_CONNECTION_VERSION_RCP3(300);
private final int value;
DeviceConnectionVersioin(int value) {
this.value = value;
}
public int getValue() {
return value;
}
}