Skip to main content

NestActionType

enum class NestActionType

Description: Nest command type

enum class NestActionType(var value: Int) {
/**
*0x01-Auto
*/
AUTO(0x01),

/**
*0x02-jog
*/
MANUAL(0x02),

/**
*0x03-stop
*/
STOP(0x03),

/**
*0x55aa
*/
NORMAL(0x55aa),

/**
*0x3001: One-key standby flight command
*/
ONE_KEY_FLIGHT(0x3001),

/**
*0x3002: One-key standby command
*/
ONE_KEY_LANDING(0x3002), UNKNOWN(-1);
}