public enum MavCmdVideoStartCapture extends Enum<MavCmdVideoStartCapture>
| 枚举常量和说明 |
|---|
PARAM_1
Camera ID (0 for all cameras), 1 for first, 2 for second, etc.
|
PARAM_2
Frames per second
|
PARAM_3
Resolution in megapixels (0.3 for 640x480, 1.3 for 1280x720, etc)
|
public static final MavCmdVideoStartCapture PARAM_1
public static final MavCmdVideoStartCapture PARAM_2
public static final MavCmdVideoStartCapture PARAM_3
public static MavCmdVideoStartCapture[] values()
for (MavCmdVideoStartCapture c : MavCmdVideoStartCapture.values()) System.out.println(c);
public static MavCmdVideoStartCapture valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2020. All rights reserved.