DragonFish Actuator Type Enum
enum class UavActuatorTypeEnum(DragonFish)
Description: Actuator configuration parameter enumeration class
enum class UavActuatorTypeEnum(var value: Int) {
/**
* Front body ESC
*/
FONT_ESC(0x14),
/**
* Rear body ESC
*/
BEHIND_ESC(0x15),
/**
* Left wing ESC
*/
LEFT_ESC(0x16),
/**
* Right wing ESC
*/
RIGHT_ESC(0x17),
/**
* Tail wing ESC
*/
TAIL_CONTROL_PANEL(0x23),
/**
* Left wing servo board
*/
LEFT_STEER_PANEL(0x24),
/**
* Right wing servo board
*/
RIGHT_STEER_PANEL(0x25),
/**
* GPS board, compass
*/
GPS_PANEL(0x3C),
/**
* Unknown
*/
UNKNOWN(0);
}