A aeropic Active Member Licensed User Longtime User Feb 19, 2021 #1 Hi friends, Still playing with DJI library... Is there a way to get and display DJI error messages such as "strong wind" " compass calibration needed" ? Any example welcome ;-) Thanks
Hi friends, Still playing with DJI library... Is there a way to get and display DJI error messages such as "strong wind" " compass calibration needed" ? Any example welcome ;-) Thanks
Erel B4X founder Staff member Licensed User Longtime User Feb 21, 2021 #2 There are many related APIs. For example, to get the wind warning: https://developer.dji.com/api-refer...ightcontrollercurrentstate_windwarning_inline B4X: Dim jo As JavaObject = CurrentState Dim warning As String = jo.RunMethod("getFlightWindWarning", Null) Upvote 0
There are many related APIs. For example, to get the wind warning: https://developer.dji.com/api-refer...ightcontrollercurrentstate_windwarning_inline B4X: Dim jo As JavaObject = CurrentState Dim warning As String = jo.RunMethod("getFlightWindWarning", Null)
A aeropic Active Member Licensed User Longtime User Feb 21, 2021 #3 Thanks a lot Erel, I'll try it ! Upvote 0