DJIIntelligentFlightAssistantDelegate
@protocol DJIIntelligentFlightAssistantDelegate <NSObject>
This protocol provides a delegate method to update the Intelligent Flight Assistant current state.
-
Callback function that updates the detection state of each vision sensor.
Declaration
Objective-C
- (void)intelligentFlightAssistant: (DJIIntelligentFlightAssistant *_Nonnull)assistant didUpdateVisionDetectionState:(DJIVisionDetectionState *_Nonnull)state;Parameters
assistantIntelligent flight assistant that has the updated state.
stateThe state of vision sensor.
-
Callback function that updates the aircraft state controlled by the intelligent flight assistant.
Declaration
Objective-C
- (void)intelligentFlightAssistant: (DJIIntelligentFlightAssistant *_Nonnull)assistant didUpdateVisionControlState:(DJIVisionControlState *_Nonnull)state;Parameters
assistantIntelligent flight assistant that has the updated state.
stateThe control state.
View on GitHub
DJIIntelligentFlightAssistantDelegate Protocol Reference