RCButtonTypeEnum
enum class RCButtonTypeEnum
Description: Remote control button type enumeration class
enum class RCButtonTypeEnum(val value: Int) {
/**
* unknown
*/
UNKNOWN(0),
/**
* Takeoff/landing button
*/
GO_HOME(1),
/**
* Hover button
*/
HOVER(2),
/**
* Photo/video button
*/
PHOTO_RECORD(3),
/**
* Photograph
*/
PHOTO(4),
/**
* Video
*/
RECORD(5),
/**
* Custom button on the left
*/
LEFT_CUSTOM(6),
/**
* Custom button on the right
*/
RIGHT_CUSTOM(7),
/**
* Right scroll wheel zoom in
*/
ZOOM_IN(8),
/**
* Right scroll wheel zoom out
*/
ZOOM_OUT(9),
/**
* left scroll wheel
*/
RC_LEFT_WHEEL(10);
}