:mod:`wifi` =========== .. py:module:: wifi .. autoapi-nested-parse:: The `wifi` module provides necessary low-level functionality for managing wifi connections. Use `socketpool` for communicating over the network. .. raw:: html

Available on these boards

.. py:data:: radio :annotation: :Radio Wifi radio used to manage both station and AP modes. This object is the sole instance of `wifi.Radio`. .. py:class:: AuthMode The authentication protocols used by WiFi. .. py:attribute:: OPEN :annotation: :object Open network. No authentication required. .. py:attribute:: WEP :annotation: :object Wired Equivalent Privacy. .. py:attribute:: WPA :annotation: :object Wireless Protected Access. .. py:attribute:: WPA2 :annotation: :object Wireless Protected Access 2. .. py:attribute:: WPA3 :annotation: :object Wireless Protected Access 3. .. py:attribute:: PSK :annotation: :object Pre-shared Key. (password) .. py:attribute:: ENTERPRISE :annotation: :object Each user has a unique credential. .. py:class:: Monitor For monitoring WiFi packets. .. py:function:: __init__(self, channel: Optional[int] = 1, queue: Optional[int] = 128) -> None Initialize `wifi.Monitor` singleton. :param int channel: The WiFi channel to scan. :param int queue: The queue size for buffering the packet. .. py:data:: channel :annotation: :int The WiFi channel to scan. .. py:data:: queue :annotation: :int The queue size for buffering the packet. .. py:function:: deinit(self) -> None De-initialize `wifi.Monitor` singleton. .. py:function:: lost(self) -> int Returns the packet loss count. The counter resets after each poll. .. py:function:: queued(self) -> int Returns the packet queued count. .. py:function:: packet(self) -> dict Returns the monitor packet. .. py:class:: Network A wifi network provided by a nearby access point. You cannot create an instance of `wifi.Network`. They are returned by `wifi.Radio.start_scanning_networks`. .. py:attribute:: ssid :annotation: :str String id of the network .. py:attribute:: bssid :annotation: :bytes BSSID of the network (usually the AP's MAC address) .. py:attribute:: rssi :annotation: :int Signal strength of the network .. py:attribute:: channel :annotation: :int Channel number the network is operating on .. py:attribute:: country :annotation: :str String id of the country code .. py:attribute:: authmode :annotation: :str String id of the authmode .. py:class:: Packet The packet parameters. .. py:attribute:: CH :annotation: :object The packet's channel. .. py:attribute:: LEN :annotation: :object The packet's length. .. py:attribute:: RAW :annotation: :object The packet's payload. .. py:attribute:: RSSI :annotation: :object The packet's rssi. .. py:class:: Radio Native wifi radio. This class manages the station and access point functionality of the native Wifi radio. You cannot create an instance of `wifi.Radio`. Use `wifi.radio` to access the sole instance available. .. py:attribute:: enabled :annotation: :bool ``True`` when the wifi radio is enabled. If you set the value to ``False``, any open sockets will be closed. .. py:attribute:: hostname :annotation: :_typing.ReadableBuffer Hostname for wifi interface. When the hostname is altered after interface started/connected the changes would only be reflected once the interface restarts/reconnects. .. py:attribute:: mac_address :annotation: :_typing.ReadableBuffer MAC address for the station. When the address is altered after interface is connected the changes would only be reflected once the interface reconnects. .. py:attribute:: mac_address_ap :annotation: :_typing.ReadableBuffer MAC address for the AP. When the address is altered after interface is started the changes would only be reflected once the interface restarts. .. py:attribute:: ipv4_gateway :annotation: :Optional[ipaddress.IPv4Address] IP v4 Address of the station gateway when connected to an access point. None otherwise. .. py:attribute:: ipv4_gateway_ap :annotation: :Optional[ipaddress.IPv4Address] IP v4 Address of the access point gateway, when enabled. None otherwise. .. py:attribute:: ipv4_subnet :annotation: :Optional[ipaddress.IPv4Address] IP v4 Address of the station subnet when connected to an access point. None otherwise. .. py:attribute:: ipv4_subnet_ap :annotation: :Optional[ipaddress.IPv4Address] IP v4 Address of the access point subnet, when enabled. None otherwise. .. py:attribute:: ipv4_address :annotation: :Optional[ipaddress.IPv4Address] IP v4 Address of the station when connected to an access point. None otherwise. .. py:attribute:: ipv4_address :annotation: :ipaddress.IPv4Address None .. py:attribute:: ipv4_address_ap :annotation: :Optional[ipaddress.IPv4Address] IP v4 Address of the access point, when enabled. None otherwise. .. py:attribute:: ipv4_dns :annotation: :Optional[ipaddress.IPv4Address] IP v4 Address of the DNS server in use when connected to an access point. None otherwise. .. py:attribute:: ap_info :annotation: :Optional[Network] Network object containing BSSID, SSID, authmode, channel, country and RSSI when connected to an access point. None otherwise. .. py:method:: start_scanning_networks(*, start_channel: int = 1, stop_channel: int = 11) -> Iterable[Network] Scans for available wifi networks over the given channel range. Make sure the channels are allowed in your country. .. py:method:: stop_scanning_networks() -> None Stop scanning for Wifi networks and free any resources used to do it. .. py:method:: start_station() -> None Starts a Station. .. py:method:: stop_station() -> None Stops the Station. .. py:method:: start_ap(ssid: _typing.ReadableBuffer, password: _typing.ReadableBuffer = b'', *, channel: Optional[int] = 1, authmode: Optional[AuthMode]) -> None Starts an Access Point with the specified ssid and password. If ``channel`` is given, the access point will use that channel unless a station is already operating on a different channel. If ``authmode`` is given, the access point will use that Authentication mode. If a password is given, ``authmode`` must not be ``OPEN``. If ``authmode`` isn't given, ``OPEN`` will be used when password isn't provided, otherwise ``WPA_WPA2_PSK``. .. py:method:: stop_ap() -> None Stops the Access Point. .. py:method:: connect(ssid: _typing.ReadableBuffer, password: _typing.ReadableBuffer = b'', *, channel: Optional[int] = 0, bssid: Optional[_typing.ReadableBuffer] = b'', timeout: Optional[float] = None) -> bool Connects to the given ssid and waits for an ip address. Reconnections are handled automatically once one connection succeeds. By default, this will scan all channels and connect to the access point (AP) with the given ``ssid`` and greatest signal strength (rssi). If ``channel`` is given, the scan will begin with the given channel and connect to the first AP with the given ``ssid``. This can speed up the connection time significantly because a full scan doesn't occur. If ``bssid`` is given, the scan will start at the first channel or the one given and connect to the AP with the given ``bssid`` and ``ssid``. .. py:method:: ping(ip: ipaddress.IPv4Address, *, timeout: Optional[float] = 0.5) -> float Ping an IP to test connectivity. Returns echo time in seconds. Returns None when it times out. .. py:class:: ScannedNetworks Iterates over all `wifi.Network` objects found while scanning. This object is always created by a `wifi.Radio`: it has no user-visible constructor. Cannot be instantiated directly. Use `wifi.Radio.start_scanning_networks`. .. py:method:: __iter__() -> Iterator[Network] Returns itself since it is the iterator. .. py:method:: __next__() -> Network Returns the next `wifi.Network`. Raises `StopIteration` if scanning is finished and no other results are available.