PointAndFlyExecutionStatus

public enum PointAndFlyExecutionStatus : String, CustomStringConvertible, CaseIterable

Execution status of a point or fly directive.

  • Directive execution did complete successfully (fly).

    Declaration

    Swift

    case success
  • Directive failed to execute or to complete successfully.

    Declaration

    Swift

    case failed
  • Directive execution was interrupted, either by user (deactivate, execute request) or by the drone.

    Declaration

    Swift

    case interrupted
  • Debug description.

    Declaration

    Swift

    public var description: String { get }