Skip to main content

NestComponentEnum

enum class NestComponentEnum

Description: Component enum

    enum class NestComponentEnum(var value: Int) {
NEST_COMPONENTS_UNKNOWN(0),

/**
*X bar
*/
NEST_COMPONENT_X_ROD(1),

/**
*Y bar
*/
NEST_COMPONENT_Y_ROD(2),

/**
*Hatch door
*/
NEST_COMPONENT_CABIN(3),

/**
*Right rear servo
*/
NEST_COMPONENT_RIGHT_REAR_STEERING_ENGINE(4),

/**
* Right front servo
*/
NEST_COMPONENT_RIGHT_FRONT_STEERING_ENGINE(5),

/**
*Left rear servo
*/
NEST_COMPONENT_LEFT_REAR_STEERING_ENGINE(6),

/**
* Left front servo
*/
NEST_COMPONENT_LEFT_FRONT_STEERING_ENGINE(7);
}