EnvironmentSetting

public protocol EnvironmentSetting : AnyObject

Setting providing access to the Wifi environment setup.

  • Tells if the setting value has been changed and is waiting for change confirmation.

    Declaration

    Swift

    var updating: Bool { get }
  • Tells whether the setting can be altered by the application.

    Depending on the device, the current environment setup may not be changed. For instance, on remote control devices, the environment is hard wired to the currently or most recently connected drone, if any, and cannot be changed by the application.

    Declaration

    Swift

    var mutable: Bool { get }
  • Current environment mode of the access point.

    Note

    Altering this setting may change the set of available channels, and even result in a device disconnection since the channel currently in use might not be allowed with the new environment setup.

    Declaration

    Swift

    var value: Environment { get set }