FlyingIndicatorsState

@objc(GSFlyingIndicatorsState)
public enum FlyingIndicatorsState : Int, CustomStringConvertible

Flying indicator state.

  • Drone can be in initialization state or it can be waiting for a command or a user action to takeoff. See landedState for more details.

    Declaration

    Swift

    case landed
  • Drone is flying. See flyingState for more details.

    Declaration

    Swift

    case flying
  • Autopilot has detected defective sensor(s). An emergency landing was triggered.

    Declaration

    Swift

    case emergencyLanding
  • Drone stopped due to an emergency.

    Declaration

    Swift

    case emergency
  • Debug description.

    Declaration

    Swift

    public var description: String { get }