mirror of
https://github.com/micropython/micropython.git
synced 2025-09-07 18:30:27 +02:00
Some checks are pending
JavaScript code lint and formatting with Biome / eslint (push) Waiting to run
Check code formatting / code-formatting (push) Waiting to run
Check spelling with codespell / codespell (push) Waiting to run
Build docs / build (push) Waiting to run
Check examples / embedding (push) Waiting to run
Package mpremote / build (push) Waiting to run
.mpy file format and tools / test (push) Waiting to run
Build ports metadata / build (push) Waiting to run
cc3200 port / build (push) Waiting to run
esp32 port / build_idf (esp32_build_cmod_spiram_s2) (push) Waiting to run
esp32 port / build_idf (esp32_build_s3_c3) (push) Waiting to run
esp8266 port / build (push) Waiting to run
mimxrt port / build (push) Waiting to run
nrf port / build (push) Waiting to run
powerpc port / build (push) Waiting to run
qemu port / build_and_test_arm (push) Waiting to run
qemu port / build_and_test_rv32 (push) Waiting to run
renesas-ra port / build_renesas_ra_board (push) Waiting to run
rp2 port / build (push) Waiting to run
samd port / build (push) Waiting to run
stm32 port / build_stm32 (stm32_misc_build) (push) Waiting to run
stm32 port / build_stm32 (stm32_nucleo_build) (push) Waiting to run
stm32 port / build_stm32 (stm32_pyb_build) (push) Waiting to run
unix port / minimal (push) Waiting to run
unix port / reproducible (push) Waiting to run
unix port / standard (push) Waiting to run
unix port / standard_v2 (push) Waiting to run
unix port / coverage (push) Waiting to run
unix port / coverage_32bit (push) Waiting to run
unix port / nanbox (push) Waiting to run
unix port / float (push) Waiting to run
unix port / stackless_clang (push) Waiting to run
unix port / float_clang (push) Waiting to run
unix port / settrace (push) Waiting to run
unix port / settrace_stackless (push) Waiting to run
unix port / macos (push) Waiting to run
unix port / qemu_mips (push) Waiting to run
unix port / qemu_arm (push) Waiting to run
unix port / qemu_riscv64 (push) Waiting to run
webassembly port / build (push) Waiting to run
windows port / build-vs (Debug, x64, windows-2022, dev, 2022, [17, 18)) (push) Waiting to run
windows port / build-vs (Debug, x64, windows-latest, dev, 2017, [15, 16)) (push) Waiting to run
windows port / build-vs (Debug, x86, windows-2022, dev, 2022, [17, 18)) (push) Waiting to run
windows port / build-vs (Debug, x86, windows-latest, dev, 2017, [15, 16)) (push) Waiting to run
windows port / build-vs (Release, x64, windows-2019, dev, 2019, [16, 17)) (push) Waiting to run
windows port / build-vs (Release, x64, windows-2019, standard, 2019, [16, 17)) (push) Waiting to run
windows port / build-vs (Release, x64, windows-2022, dev, 2022, [17, 18)) (push) Waiting to run
windows port / build-vs (Release, x64, windows-2022, standard, 2022, [17, 18)) (push) Waiting to run
windows port / build-vs (Release, x64, windows-latest, dev, 2017, [15, 16)) (push) Waiting to run
windows port / build-vs (Release, x64, windows-latest, standard, 2017, [15, 16)) (push) Waiting to run
windows port / build-vs (Release, x86, windows-2019, dev, 2019, [16, 17)) (push) Waiting to run
windows port / build-vs (Release, x86, windows-2019, standard, 2019, [16, 17)) (push) Waiting to run
windows port / build-vs (Release, x86, windows-2022, dev, 2022, [17, 18)) (push) Waiting to run
windows port / build-vs (Release, x86, windows-2022, standard, 2022, [17, 18)) (push) Waiting to run
windows port / build-vs (Release, x86, windows-latest, dev, 2017, [15, 16)) (push) Waiting to run
windows port / build-vs (Release, x86, windows-latest, standard, 2017, [15, 16)) (push) Waiting to run
windows port / build-mingw (i686, mingw32, dev) (push) Waiting to run
windows port / build-mingw (i686, mingw32, standard) (push) Waiting to run
windows port / build-mingw (x86_64, mingw64, dev) (push) Waiting to run
windows port / build-mingw (x86_64, mingw64, standard) (push) Waiting to run
windows port / cross-build-on-linux (push) Waiting to run
zephyr port / build (push) Waiting to run
Python code lint and formatting with ruff / ruff (push) Waiting to run
This commit introduces the ability to obtain a list of stations connected to the device when in soft-AP mode. A new parameter ("stations") to pass to WLAN.status is supported, returning a tuple of (bssid, ipv4) entries, one per connected station. An empty tuple is returned if no stations are connected, and an exception is raised if an error occurred whilst building the python objects to return to the interpreter. Documentation is also updated to cover the new parameter. This fixes #5395. Signed-off-by: Alessandro Gatti <a.gatti@frob.it>
164 lines
6.5 KiB
ReStructuredText
164 lines
6.5 KiB
ReStructuredText
.. currentmodule:: network
|
|
.. _network.WLAN:
|
|
|
|
class WLAN -- control built-in WiFi interfaces
|
|
==============================================
|
|
|
|
This class provides a driver for WiFi network processors. Example usage::
|
|
|
|
import network
|
|
# enable station interface and connect to WiFi access point
|
|
nic = network.WLAN(network.WLAN.IF_STA)
|
|
nic.active(True)
|
|
nic.connect('your-ssid', 'your-key')
|
|
# now use sockets as usual
|
|
|
|
Constructors
|
|
------------
|
|
.. class:: WLAN(interface_id)
|
|
|
|
Create a WLAN network interface object. Supported interfaces are
|
|
``network.WLAN.IF_STA`` (station aka client, connects to upstream WiFi access
|
|
points) and ``network.WLAN.IF_AP`` (access point, allows other WiFi clients to
|
|
connect). Availability of the methods below depends on interface type.
|
|
For example, only STA interface may `WLAN.connect()` to an access point.
|
|
|
|
Methods
|
|
-------
|
|
|
|
.. method:: WLAN.active([is_active])
|
|
|
|
Activate ("up") or deactivate ("down") network interface, if boolean
|
|
argument is passed. Otherwise, query current state if no argument is
|
|
provided. Most other methods require active interface.
|
|
|
|
.. method:: WLAN.connect(ssid=None, key=None, *, bssid=None)
|
|
|
|
Connect to the specified wireless network, using the specified key.
|
|
If *bssid* is given then the connection will be restricted to the
|
|
access-point with that MAC address (the *ssid* must also be specified
|
|
in this case).
|
|
|
|
.. method:: WLAN.disconnect()
|
|
|
|
Disconnect from the currently connected wireless network.
|
|
|
|
.. method:: WLAN.scan()
|
|
|
|
Scan for the available wireless networks.
|
|
Hidden networks -- where the SSID is not broadcast -- will also be scanned
|
|
if the WLAN interface allows it.
|
|
|
|
Scanning is only possible on STA interface. Returns list of tuples with
|
|
the information about WiFi access points:
|
|
|
|
(ssid, bssid, channel, RSSI, security, hidden)
|
|
|
|
*bssid* is hardware address of an access point, in binary form, returned as
|
|
bytes object. You can use `binascii.hexlify()` to convert it to ASCII form.
|
|
|
|
There are five values for security:
|
|
|
|
* 0 -- open
|
|
* 1 -- WEP
|
|
* 2 -- WPA-PSK
|
|
* 3 -- WPA2-PSK
|
|
* 4 -- WPA/WPA2-PSK
|
|
|
|
and two for hidden:
|
|
|
|
* 0 -- visible
|
|
* 1 -- hidden
|
|
|
|
.. method:: WLAN.status([param])
|
|
|
|
Return the current status of the wireless connection.
|
|
|
|
When called with no argument the return value describes the network link status.
|
|
The possible statuses are defined as constants in the :mod:`network` module:
|
|
|
|
* ``STAT_IDLE`` -- no connection and no activity,
|
|
* ``STAT_CONNECTING`` -- connecting in progress,
|
|
* ``STAT_WRONG_PASSWORD`` -- failed due to incorrect password,
|
|
* ``STAT_NO_AP_FOUND`` -- failed because no access point replied,
|
|
* ``STAT_CONNECT_FAIL`` -- failed due to other problems,
|
|
* ``STAT_GOT_IP`` -- connection successful.
|
|
|
|
When called with one argument *param* should be a string naming the status
|
|
parameter to retrieve, and different parameters are supported depending on the
|
|
mode the WiFi is in.
|
|
|
|
In STA mode, passing ``'rssi'`` returns a signal strength indicator value, whose
|
|
format varies depending on the port (this is available on all ports that support
|
|
WiFi network interfaces, except for CC3200).
|
|
|
|
In AP mode, passing ``'stations'`` returns a list of connected WiFi stations
|
|
(this is available on all ports that support WiFi network interfaces, except for
|
|
CC3200). The format of the station information entries varies across ports,
|
|
providing either the raw BSSID of the connected station, the IP address of the
|
|
connected station, or both.
|
|
|
|
.. method:: WLAN.isconnected()
|
|
|
|
In case of STA mode, returns ``True`` if connected to a WiFi access
|
|
point and has a valid IP address. In AP mode returns ``True`` when a
|
|
station is connected. Returns ``False`` otherwise.
|
|
|
|
.. method:: WLAN.ifconfig([(ip, subnet, gateway, dns)])
|
|
|
|
Get/set IP-level network interface parameters: IP address, subnet mask,
|
|
gateway and DNS server. When called with no arguments, this method returns
|
|
a 4-tuple with the above information. To set the above values, pass a
|
|
4-tuple with the required information. For example::
|
|
|
|
nic.ifconfig(('192.168.0.4', '255.255.255.0', '192.168.0.1', '8.8.8.8'))
|
|
|
|
.. method:: WLAN.config('param')
|
|
WLAN.config(param=value, ...)
|
|
|
|
Get or set general network interface parameters. These methods allow to work
|
|
with additional parameters beyond standard IP configuration (as dealt with by
|
|
`AbstractNIC.ipconfig()`). These include network-specific and hardware-specific
|
|
parameters. For setting parameters, keyword argument syntax should be used,
|
|
multiple parameters can be set at once. For querying, parameters name should
|
|
be quoted as a string, and only one parameter can be queries at time::
|
|
|
|
# Set WiFi access point name (formally known as SSID) and WiFi channel
|
|
ap.config(ssid='My AP', channel=11)
|
|
# Query params one by one
|
|
print(ap.config('ssid'))
|
|
print(ap.config('channel'))
|
|
|
|
Following are commonly supported parameters (availability of a specific parameter
|
|
depends on network technology type, driver, and :term:`MicroPython port`).
|
|
|
|
============= ===========
|
|
Parameter Description
|
|
============= ===========
|
|
mac MAC address (bytes)
|
|
ssid WiFi access point name (string)
|
|
channel WiFi channel (integer). Depending on the port this may only be supported on the AP interface.
|
|
hidden Whether SSID is hidden (boolean)
|
|
security Security protocol supported (enumeration, see module constants)
|
|
key Access key (string)
|
|
hostname The hostname that will be sent to DHCP (STA interfaces) and mDNS (if supported, both STA and AP). (Deprecated, use :func:`network.hostname` instead)
|
|
reconnects Number of reconnect attempts to make (integer, 0=none, -1=unlimited)
|
|
txpower Maximum transmit power in dBm (integer or float)
|
|
pm WiFi Power Management setting (see below for allowed values)
|
|
============= ===========
|
|
|
|
Constants
|
|
---------
|
|
|
|
.. data:: WLAN.PM_PERFORMANCE
|
|
WLAN.PM_POWERSAVE
|
|
WLAN.PM_NONE
|
|
|
|
Allowed values for the ``WLAN.config(pm=...)`` network interface parameter:
|
|
|
|
* ``PM_PERFORMANCE``: enable WiFi power management to balance power
|
|
savings and WiFi performance
|
|
* ``PM_POWERSAVE``: enable WiFi power management with additional power
|
|
savings and reduced WiFi performance
|
|
* ``PM_NONE``: disable wifi power management
|