DJI Mobile SDK Documentation

      class DJIMutableWaypointV2Mission

      @interface DJIMutableWaypointV2Mission : DJIWaypointV2Mission
      Header:DJIWaypointV2Mission.h
      Inherits From:DJIWaypointV2Mission
      Description:

      The class represents a waypoint mission that can be changed. This class should be used to initialize the parameters of a waypoint mission.

      Class Members:
      Mission ID
      property
      property missionID
      @property(nonatomic, readwrite) NSUInteger missionID
      Header:DJIWaypointV2Mission.h
      Description:

      The Mission ID.

      property waypointCount
      @property(nonatomic, readwrite) NSUInteger waypointCount
      Header:DJIWaypointV2Mission.h
      Description:

      Number of waypoints in the waypoint mission. Note there are some cases when the waypoint count will be different to the waypoint array length from allWaypoints. This is usually the case when the waypoint mission is still being downloaded from the aircraft and the mission object hasn't existed previously (e.g. when the mobile device is connected to an aircraft with a previously uploaded mission). In these cases, isComplete will return YES.

      Max Flight Speed
      property
      property maxFlightSpeed
      @property(nonatomic, readwrite) float maxFlightSpeed
      Header:DJIWaypointV2Mission.h
      Description:

      While the aircraft is travelling between waypoints, you can offset its speed by using the throttle joystick on the remote controller. maxFlightSpeed is this offset when the joystick is pushed to maximum deflection. For example, If maxFlightSpeed is 10 m/s, then pushing the throttle joystick all the way up will add 10 m/s to the aircraft speed, while pushing down will subtract 10 m/s from the aircraft speed. If the remote controller stick is not at maximum deflection, then the offset speed will be interpolated between "[0, maxFlightSpeed]"" with a resolution of 1000 steps. If the offset speed is negative, then the aircraft will fly backwards to previous waypoints. When it reaches the first waypoint, it will then hover in place until a positive speed is applied. maxFlightSpeed has a range of [2,15] m/s.

      Auto Flight Speed
      property
      property autoFlightSpeed
      @property(nonatomic, readwrite) float autoFlightSpeed
      Header:DJIWaypointV2Mission.h
      Description:

      The base automatic speed of the aircraft as it moves between waypoints with range [-15, 15] m/s. The aircraft's actual speed is a combination of the base automatic speed, and the speed control given by the throttle joystick on the remote controller. If "autoFlightSpeed >0": Actual speed is autoFlightSpeed + Joystick Speed (with combined max of maxFlightSpeed) If "autoFlightSpeed =0": Actual speed is controlled only by the remote controller joystick. If "autoFlightSpeed <0" and the aircraft is at the first waypoint, the aircraft will hover in place until the speed is made positive by the remote controller joystick. In flight controller firmware 3.2.10.0 or above, different speeds between individual waypoints can also be set in waypoint objects which will overwrite autoFlightSpeed.

      Finished Action
      property
      property finishedAction
      @property(nonatomic, readwrite) DJIWaypointV2MissionFinishedAction finishedAction
      Header:DJIWaypointV2Mission.h
      Description:

      Action the aircraft will take when the waypoint mission is complete.

      See Also:

      DJIWaypointV2MissionFinishedAction

      Start Mission behavior
      property
      property gotoFirstWaypointMode
      @property(nonatomic, readwrite) DJIWaypointV2MissionGotoFirstWaypointMode gotoFirstWaypointMode
      Header:DJIWaypointV2Mission.h
      Description:

      Determines how the aircraft will reach first waypoint from current position. Default is DJIWaypointV2MissionGotoFirstWaypointModeSafely.

      See Also:

      DJIWaypointV2MissionGotoFirstWaypointMode

      Exit Mission On RC Signal Lost
      property
      property exitMissionOnRCSignalLost
      @property(nonatomic, readwrite) BOOL exitMissionOnRCSignalLost
      Header:DJIWaypointV2Mission.h
      Description:

      Determines whether exit mission when RC signal lost. Default is NO.

      Repeat Times
      property
      property repeatTimes
      @property(nonatomic, readwrite) int repeatTimes
      Header:DJIWaypointV2Mission.h
      Description:

      Repeat times for mission execution. Default is 1.

      Add Waypoint
      method
      method addWaypoint
      - (void)addWaypoint:(DJIWaypointV2 *)waypoint
      Header:DJIWaypointV2Mission.h
      Description:

      Add a waypoint to the waypoint mission. The number of waypoints should be in the range [2, 99]. When a waypoint is added successfully, waypointCount will increment by 1. A waypoint will only be valid if the distance (in three dimensions) between two adjacent waypoints is in range [0.5,2000] meters.

      Input Parameters:
      DJIWaypointV2 * waypointTo be added to the waypoint mission.
      Add Waypoints
      method
      method addWaypoints
      - (void)addWaypoints:(NSArray *)waypoints
      Header:DJIWaypointV2Mission.h
      Description:

      Adds an array of waypoints to the waypoint mission. The number of waypoints should be in the range [2, 65535]. When the waypoints are added successfully, waypointCount will increment by the number of added waypoints.

      Input Parameters:
      NSArray * waypointsArray of waypoints to be added to the waypoint mission.
      Remove Waypoint
      method
      method removeWaypoint
      - (void)removeWaypoint:(DJIWaypointV2 *)waypoint
      Header:DJIWaypointV2Mission.h
      Description:

      Removes the last waypoint stored in the mission. When the waypoint is removed successfully, waypointCount will decrease by 1.

      Input Parameters:
      DJIWaypointV2 * waypointWaypoint object to be removed.
      Remove Waypoint At Index
      method
      method removeWaypointAtIndex
      - (void)removeWaypointAtIndex:(NSInteger)index
      Header:DJIWaypointV2Mission.h
      Description:

      Removes the waypoint at an index. When the waypoint is removed successfully, waypointCount will decrease by 1.

      Input Parameters:
      NSInteger indexIndex of the waypoint to be removed from the waypoint mission.
      Remove All Waypoints
      method
      method removeAllWaypoints
      - (void)removeAllWaypoints
      Header:DJIWaypointV2Mission.h
      Description:

      Removes all waypoints from the waypoint mission. When all waypoints are removed successfully, waypointCount will be 0.