2016-11-05 16:18:25 +00:00
|
|
|
Wi-Fi
|
|
|
|
=====
|
2016-10-24 18:44:57 +00:00
|
|
|
|
2017-09-27 01:13:20 +00:00
|
|
|
Introduction
|
|
|
|
------------
|
2016-10-26 19:08:36 +00:00
|
|
|
|
2017-09-27 01:13:20 +00:00
|
|
|
The WiFi libraries provide support for configuring and monitoring the ESP32 WiFi networking functionality. This includes configuration for:
|
2016-10-26 19:08:36 +00:00
|
|
|
|
2017-09-27 01:13:20 +00:00
|
|
|
- Station mode (aka STA mode or WiFi client mode). ESP32 connects to an access point.
|
|
|
|
- AP mode (aka Soft-AP mode or Access Point mode). Stations connect to the ESP32.
|
|
|
|
- Combined AP-STA mode (ESP32 is concurrently an access point and a station connected to another access point).
|
|
|
|
|
|
|
|
- Various security modes for the above (WPA, WPA2, WEP, etc.)
|
|
|
|
- Scanning for access points (active & passive scanning).
|
|
|
|
- Promiscuous mode monitoring of IEEE802.11 WiFi packets.
|
2017-01-17 18:12:48 +00:00
|
|
|
|
2017-05-02 08:36:01 +00:00
|
|
|
Application Examples
|
|
|
|
--------------------
|
2016-10-26 19:08:36 +00:00
|
|
|
|
2017-05-02 08:36:01 +00:00
|
|
|
See :example:`wifi` directory of ESP-IDF examples that contains the following applications:
|
2016-10-26 19:08:36 +00:00
|
|
|
|
2017-05-02 08:36:01 +00:00
|
|
|
* Simple application showing how to connect ESP32 module to an Access Point - `esp-idf-template <https://github.com/espressif/esp-idf-template>`_.
|
2016-10-24 18:44:57 +00:00
|
|
|
|
2017-05-02 08:36:01 +00:00
|
|
|
* Using power save mode of Wi-Fi - :example:`wifi/power_save`.
|
2016-10-24 18:44:57 +00:00
|
|
|
|
|
|
|
|
2017-05-02 08:36:01 +00:00
|
|
|
API Reference
|
|
|
|
-------------
|
2016-11-05 16:18:25 +00:00
|
|
|
|
2017-05-02 08:36:01 +00:00
|
|
|
.. include:: /_build/inc/esp_wifi.inc
|
2017-09-26 07:02:52 +00:00
|
|
|
.. include:: /_build/inc/esp_wifi_types.inc
|
|
|
|
|
2016-11-05 16:18:25 +00:00
|
|
|
|