public final enum

DJIRCControlStyle

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ dji.common.remotecontroller.DJIRCControlStyle

Class Overview

Remote controller's control style.

Summary

Enum Values
DJIRCControlStyle  American  Remote Controller uses American controls (also known as MODE 2). 
DJIRCControlStyle  Chinese  Remote Controller uses Chinese controls (also know as MODE 3). 
DJIRCControlStyle  Custom  Stick channel mapping for Roll, Pitch, Yaw and Throttle can be customized. 
DJIRCControlStyle  Japanese  Remote Controller uses Japanese controls (also known as MODE 1). 
DJIRCControlStyle  SlaveCustom  Slave remote controller stick channel mapping for Roll, Pitch, Yaw and Throttle can be customized. 
DJIRCControlStyle  SlaveDefault  Default Remote Controller controls and settings for slave Remote Controller. 
DJIRCControlStyle  Unknown  The Remote Controller's control style is unknown. 
Public Methods
boolean _equals(int b)
Returns the boolean result which compare the input integer value with the real value of a enum constant.
static DJIRCControlStyle find(int value)
Returns the enum constant of this type with the input integer value.
int value()
Returns the real value of a enum constant.
static DJIRCControlStyle valueOf(String name)
final static DJIRCControlStyle[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final DJIRCControlStyle American

Remote Controller uses American controls (also known as MODE 2). In this mode the left stick controls Throttle and Yaw, and the right stick controls Pitch and Roll.

public static final DJIRCControlStyle Chinese

Remote Controller uses Chinese controls (also know as MODE 3). In this mode the left stick controls Pitch and Roll, and the right stick controls Throttle and Yaw.

public static final DJIRCControlStyle Custom

Stick channel mapping for Roll, Pitch, Yaw and Throttle can be customized.

public static final DJIRCControlStyle Japanese

Remote Controller uses Japanese controls (also known as MODE 1). In this mode the left stick controls Pitch and Yaw, and the right stick controls Throttle and Roll

public static final DJIRCControlStyle SlaveCustom

Slave remote controller stick channel mapping for Roll, Pitch, Yaw and Throttle can be customized.

public static final DJIRCControlStyle SlaveDefault

Default Remote Controller controls and settings for slave Remote Controller.

public static final DJIRCControlStyle Unknown

The Remote Controller's control style is unknown.

Public Methods

public boolean _equals (int b)

Returns the boolean result which compare the input integer value with the real value of a enum constant.

public static DJIRCControlStyle find (int value)

Returns the enum constant of this type with the input integer value.

public int value ()

Returns the real value of a enum constant.

public static DJIRCControlStyle valueOf (String name)

public static final DJIRCControlStyle[] values ()