commit 25/07/2025

This commit is contained in:
2025-07-25 13:29:53 +07:00
parent cb92964949
commit 123bd9cf73
32 changed files with 411 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrEframingProductionEffect {
CrEframingProductionEffect_Off(0x0001),
CrEframingProductionEffect_IntervalZoomInOut_15sec(CrEframingProductionEffect_Off.getValue() + 1),
CrEframingProductionEffect_IntervalZoomInOut_30sec(CrEframingProductionEffect_Off.getValue() + 2);
private final CrInt16u value;
CrEframingProductionEffect(int value) { this.value = new CrInt16u(value); }
public int getValue() { return value.intValue(); }
}