ConnectionSecurity

@objc(GSConnectionSecurity)
public enum ConnectionSecurity : Int

Drone connection security type.

  • Drone is not secured, i.e. it can be connected to without password.

    Declaration

    Swift

    case none
  • Drone is secured with a password, i.e. the user is required to provide it for connection.

    Declaration

    Swift

    case password
  • Drone is secured, yet the RemoteControl device that discovered it has a stored password to use for connection, so the user is not required to provide a password for connection.

    Note however, that the RC’s saved password might be wrong and the user might need to fallback providing a password for connection.

    Declaration

    Swift

    case savedPassword
  • Debug description.

    Declaration

    Swift

    public var description: String { get }