DJIAirLink

@interface DJIAirLink : DJIBaseComponent

The class contains different wireless links between the aircraft, the remote controller and the mobile device. To determine whether the current device supports WiFi and Lightbridge features, call isWifiLinkSupported or isLBAirLinkSupported.

With the Osmo the mobile device communicates directly via wifi.

  • YES if WiFi Air Link is supported.

    Declaration

    Objective-C

    @property (readonly, nonatomic) BOOL isWifiLinkSupported;
  • YES if Lightbridge Air Link is supported.

    Declaration

    Objective-C

    @property (readonly, nonatomic) BOOL isLBAirLinkSupported;
  • YES if the Auxiliary Control Air Link is supported. The Auxiliary Control link is the wireless link between the remote controller and aircraft for the Phantom 3 Standard and Phantom 3 4K products.

    Declaration

    Objective-C

    @property (readonly, nonatomic) BOOL isAuxLinkSupported;
  • YES if the OcuSync Link is supported. OcuSync Link is only supported by Mavic Pro.

    Declaration

    Objective-C

    @property (readonly, nonatomic) BOOL isOcuSyncLinkSupported;
  • Returns the WiFi Air Link if it is available.

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) DJIWiFiLink *_Nullable wifiLink;
  • Returns the Lightbridge Air Link if it is available.

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) DJILBAirLink *_Nullable lbAirLink;
  • Returns the Auxiliary Control Air Link if it is available.

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) DJIAuxLink *_Nullable auxLink;
  • Returns the OcuSync Link if it is available.

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) DJIOcuSyncLink *_Nullable ocuSyncLink;