swift2 DJI SDK“尚未记录起始点,”错误代码:-5010

rkttyhzu  于 2022-11-06  发布在  Swift
关注(0)|答案(2)|浏览(186)

嘿,你会,所以我试图启动一个DJI的路点任务,并得到一个错误,当我调用“启动任务执行与完成”,我显然已经成功地上传到无人机的任务使用准备任务。
它给我的错误是“Home point not recorded yet”。我查看了文档中设置Home point的方法,但没有找到任何东西,我扫描了DJIMissionManager对象和DJIWayPointObject的列出方法,但没有任何结果。我还尝试添加从无人机当前状态中获取的“aircraftLocation”。
下面是代码。

import UIKit
import MapKit
import CoreLocation
import DJISDK
import Foundation

class FlyToPointsViewController: DJIBaseViewController, DJIFlightControllerDelegate, DJIMissionManagerDelegate {

    @IBOutlet weak var mapView: MKMapView!

    var mission: DJIWaypointMission? = nil
    var flightController: DJIFlightController?=nil
    var missionCoordinates=[CLLocationCoordinate2D]()
    var allSteps = [DJIWaypoint]()
    var missionManager: DJIMissionManager?=nil
    var currentState: DJIFlightControllerCurrentState?=nil

    override func viewDidAppear(animated: Bool) {
        let alertController = UIAlertController(title: "Hello Team", message:
            "There are quite a few easter eggs hidden away in here. Hopefully you find them and have a good laugh. Sorry I couldn't make it to test, the mountains are calling. But I put alot of time into this so hopefully it works as expected. I didn't add a return to home functionality to make this a bit spicy for ya so make sure your last point is near you other wise you're gonna do a bit of walking... Cheers 🍻🍻🍻🍻🍻🍻", preferredStyle: UIAlertControllerStyle.Alert)
        alertController.addAction(UIAlertAction(title: "Dismiss", style: UIAlertActionStyle.Default,handler: nil))
        self.presentViewController(alertController, animated: true, completion: nil)

    }

    override func viewDidLoad() {
        super.viewDidLoad()

        //initialize our aircraft
        mapView.delegate=self

        let aircraft: DJIAircraft? = self.fetchAircraft()
        if aircraft != nil {
            //makes the view controller watch for particular functions like the flight controller one below
            aircraft!.delegate = self
            aircraft!.flightController?.delegate = self
        }
        else{
            print("aircraft not found")
        }

        self.missionManager=DJIMissionManager.sharedInstance()
        self.missionManager?.delegate=self

        //initialize core location to put mapp on our location
        let manager = CLLocationManager()
        if CLLocationManager.authorizationStatus() == .NotDetermined {
            manager.requestAlwaysAuthorization()
        }

        //start uploading location into manager object so we can use .location method
        if CLLocationManager.locationServicesEnabled() {
            manager.startUpdatingLocation()
        }

        //let location = manager.location!.coordinate; //get ipads current location and turn it into a coordinated

        let location = CLLocationCoordinate2DMake(40.0150, -105.2705)

        let region = MKCoordinateRegionMakeWithDistance(location, 7000, 7000) //create a square region using center point and size of square
        mapView.region = region //tells the mapview to center itself around this region

        // Do any additional setup after loading the view.

    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
    override func viewWillDisappear(animated: Bool) {

        let aircraft: DJIAircraft? = self.fetchAircraft()
        if aircraft != nil {
            if aircraft!.flightController?.delegate === self {
                aircraft!.flightController!.delegate = nil
            }
        }

    }

    @IBAction func revealRegionDetailsWithLongPressOnMap(sender: UILongPressGestureRecognizer) {
        if sender.state != UIGestureRecognizerState.Began { return }
        let touchLocation = sender.locationInView(mapView)
        let locationCoordinate = mapView.convertPoint(touchLocation, toCoordinateFromView: mapView)
        self.missionCoordinates.append(locationCoordinate)

        print("Tapped at lat: \(locationCoordinate.latitude) long: \(locationCoordinate.longitude)")
        let annotation = CustomMissionPressLocation(location: locationCoordinate)
        mapView.addAnnotation(annotation)
    }

    //Mark: - Functions Called from Button Presses
    @IBAction func clearCoordinates(sender: AnyObject) {

        self.missionCoordinates=[]
        mapView.removeAnnotations(mapView.annotations)

    }

    @IBAction func startMission(sender: AnyObject) {
        if (!self.missionCoordinates.isEmpty){
            print("start Mission Attempted")
            self.mission = DJIWaypointMission()
            self.mission!.autoFlightSpeed=10
            self.mission!.maxFlightSpeed=15
            self.mission!.exitMissionOnRCSignalLost=true
            let waypoint = DJIWaypoint(coordinate: (self.currentState?.aircraftLocation)!)

            waypoint.altitude=15
            waypoint.speed=10
            waypoint.heading=0
            waypoint.actionRepeatTimes = 1
            waypoint.actionTimeoutInSeconds = 60
            waypoint.cornerRadiusInMeters = 5
            waypoint.turnMode = DJIWaypointTurnMode.Clockwise
            self.mission!.addWaypoint(waypoint)

            for locations in self.missionCoordinates{
                let waypoint = DJIWaypoint(coordinate: locations)
                waypoint.altitude=15
                waypoint.speed=10
                waypoint.heading=0
                waypoint.actionRepeatTimes = 1
                waypoint.actionTimeoutInSeconds = 60
                waypoint.cornerRadiusInMeters = 5
                waypoint.turnMode = DJIWaypointTurnMode.Clockwise

                self.mission!.addWaypoint(waypoint)
            }
            let waypointStep = DJIWaypointStep(waypointMission: self.mission!)

        self.startWayPointMission()
        }

        else{
            let alertController = UIAlertController(title: "Mission Error", message:
                "you haven't added any waypoints ya dingus", preferredStyle: UIAlertControllerStyle.Alert)
            alertController.addAction(UIAlertAction(title: "Dismiss", style: UIAlertActionStyle.Default,handler: nil))
            self.presentViewController(alertController, animated: true, completion: nil)

        }
    }

    //avoids a bunch of knuckleheads from sending the drone to china
    func missionIsntTooFar()-> Bool{
        let startLoc=self.currentState?.aircraftLocation
        let locations = self.missionCoordinates
        //let startLoc=locations[0]

        for locs in locations{
            let distance = MKMetersBetweenMapPoints(MKMapPointForCoordinate(startLoc!), MKMapPointForCoordinate(locs))
            if distance > 4000{
                return false
            }
        }
        return true
    }
    func startWayPointMission() {
        if self.missionIsntTooFar(){
            self.missionManager?.prepareMission(self.mission!, withProgress: nil, withCompletion: {[weak self]
                (error: NSError?) -> Void in
                if error == nil {

                    print("uploaded")

                    print(String(self?.missionManager?.isMissionReadyToExecute))
                    self?.missionManager?.startMissionExecutionWithCompletion({[weak self]
                        (error: NSError?)->Void in

                        if error == nil{
                            print("mission started")
                        }
                        else{
                            print("error: \(error!)")
                        }
                        })
                }
                else {
                    self?.showAlertResult("mission upload failed \(error!)")
                }
                })
        }

        else{
            mapView.removeAnnotations(mapView.annotations)

            let alertController = UIAlertController(title: "Mission is too far", message:
                "you're trying to fly the drone too far ya knucklehead", preferredStyle: UIAlertControllerStyle.Alert)

            alertController.addAction(UIAlertAction(title: "Dismiss", style: UIAlertActionStyle.Default,handler: nil))
            self.presentViewController(alertController, animated: true, completion: nil)
        }

    }

    //Mark: - Flight Controller Delegate Methods

    func flightController(fc: DJIFlightController, didUpdateSystemState state: DJIFlightControllerCurrentState) {
        self.flightController=fc
        self.currentState=state
    }

    /*
    // MARK: - Navigation

    // In a storyboard-based application, you will often want to do a little preparation before navigation
    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
        // Get the new view controller using segue.destinationViewController.
        // Pass the selected object to the new view controller.
    }
    */

}
extension FlyToPointsViewController: MKMapViewDelegate{
    func mapView(mapView: MKMapView, viewForAnnotation annotation: MKAnnotation) -> MKAnnotationView? {
        let annotationView = DroneAnnotationView(annotation: annotation, reuseIdentifier: "Attraction")
        annotationView.canShowCallout = false //we're going to customize the callout
        return annotationView
    }

}

我已经被困了几个小时了,希望有人以前见过这个。像往常一样,如果我解决了这个问题,我会把解决方案贴在这里和大疆的论坛上。
不过今晚我就到此为止了。
干杯

ljsrvy3e

ljsrvy3e1#

所以有两件事看起来是错的
A)的

self.flightController?.setHomeLocationUsingAircraftCurrentLocationWithCompletion(nil)

self.mission!.finishedAction=DJIWaypointMissionFinishedAction.GoHome

B)的
而且无人机必须在你上传使命之前已经起飞,因此请致电

self.flightController?.takeoffWithCompletion({[weak self]

在上传使命之前。
由于某种原因,你需要给予它至少两个路点,它才能成为一个有效的使命。
干杯

nfg76nw0

nfg76nw02#

我从来没有手动建立飞机的原点。但是,你确实需要等到无人机获得足够的GPS定位,以便它设置自己。
如果您实现了DJIFlightControllerDelegatedidUpdate:state方法,则可以检查state.homeLocation以查看是否已经设置了它。
另外,你可以在起飞前把使命上传到无人机上,只是不要启动旋翼。当你开始执行任务时,它会为你做这件事。

相关问题