public enum MavMountMode extends Enum<MavMountMode>
| 枚举常量和说明 |
|---|
MAV_MOUNT_MODE_GPS_POINT
Load neutral position and start to point to Lat,Lon,Alt
|
MAV_MOUNT_MODE_MAVLINK_TARGETING
Load neutral position and start MAVLink Roll,Pitch,Yaw control with stabilization
|
MAV_MOUNT_MODE_NEUTRAL
Load and keep neutral position (Roll,Pitch,Yaw) from permanent memory.
|
MAV_MOUNT_MODE_RC_TARGETING
Load neutral position and start RC Roll,Pitch,Yaw control with stabilization
|
MAV_MOUNT_MODE_RETRACT
Load and keep safe position (Roll,Pitch,Yaw) from permant memory and stop stabilization
|
public static final MavMountMode MAV_MOUNT_MODE_RETRACT
public static final MavMountMode MAV_MOUNT_MODE_NEUTRAL
public static final MavMountMode MAV_MOUNT_MODE_MAVLINK_TARGETING
public static final MavMountMode MAV_MOUNT_MODE_RC_TARGETING
public static final MavMountMode MAV_MOUNT_MODE_GPS_POINT
public static MavMountMode[] values()
for (MavMountMode c : MavMountMode.values()) System.out.println(c);
public static MavMountMode valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2020. All rights reserved.