WifiAccessPoint

interface WifiAccessPoint : Peripheral

WifiScanner peripheral interface for Drone and RemoteControl devices.

Allows to configure various parameters of the device's Wifi access point, such as:

  • Environment (indoor/outdoor) setup,
  • Country,
  • Channel
  • SSID,
  • Security.
This peripheral can be obtained from a peripheral providing device (such as a drone or a remote control) using:
device.getPeripheral(WifiAccessPoint.class)

See also

com.parrot.drone.groundsdk.device.peripheral.Peripheral.Provider

Types

Link copied to clipboard
abstract class ChannelSetting : Setting
Setting providing access to the Wifi access point channel setup.
Link copied to clipboard
abstract class CountrySetting : Setting
Setting providing access to the Wifi access point country setup.
Link copied to clipboard
enum Environment
Access point indoor/outdoor environment modes.
Link copied to clipboard
abstract class SecuritySetting : Setting
Setting providing access to the Wifi access point security setup.

Functions

Link copied to clipboard
abstract fun channel(): WifiAccessPoint.ChannelSetting
Retrieves the access point channel setting.
Link copied to clipboard
abstract fun country(): WifiAccessPoint.CountrySetting
Retrieves the access point country setting.
Link copied to clipboard
abstract fun environment(): EnumSetting<WifiAccessPoint.Environment>
Retrieves the access point indoor/outdoor environment setting.
Link copied to clipboard
abstract fun security(): WifiAccessPoint.SecuritySetting
Retrieves the access point security setting.
Link copied to clipboard
abstract fun ssid(): StringSetting
Retrieves the access point Service Set IDentifier (SSID) setting.