RcFlightModeEnum
enum class RcFlightModeEnum
Description: Remote control flight mode enumeration class
enum class RcFlightModeEnum(val value: Int) {
/**
* unknown
*/
UNKNOWN(0),
/**
* The switch is in the left position, which means IOC mode
*/
IOC(1),
/**
* The switch is in the middle gear, which means GPS mode
*/
GPS(2),
/**
* The switch is in the right gear, representing the attitude mode
*/
ATTI(3);
}