Android Question dji sdk

shb777

Active Member
Licensed User
Longtime User
these two methods are on the same page of the documentation of the DJIFlightController class
https://developer.dji.com/iframe/mo...sdk/flightcontroller/DJIFlightController.html


here's the link
https://developer.dji.com/iframe/mo...sdk/flightcontroller/DJIFlightController.html
B4X:
DJICompass    getCompass()
Compass object.


DJIIntelligentFlightAssistant    getIntelligentFlightAssistant()
IntelligentFlightAssistant object.


this works
B4X:
Dim compass As JavaObject

    compass =  FlightControllerInstance.RunMethod("getCompass", Null)



this fails says not found in flightcontroller.d
B4X:
Dim IntelligentFlightAssistant  As JavaObject


    IntelligentFlightAssistant = FlightControllerInstance.RunMethod("getIntelligentFlightAssistant",Null)

the compass works but IntelligentFlightAssistant fails ie. not found in flightcontroller.d
 
Last edited:

shb777

Active Member
Licensed User
Longtime User
Last edited:
Upvote 0
Top