esp_wifi.rst 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. Wi-Fi
  2. =====
  3. Introduction
  4. ------------
  5. The WiFi libraries provide support for configuring and monitoring the ESP32 WiFi networking functionality. This includes configuration for:
  6. - Station mode (aka STA mode or WiFi client mode). ESP32 connects to an access point.
  7. - AP mode (aka Soft-AP mode or Access Point mode). Stations connect to the ESP32.
  8. - Combined AP-STA mode (ESP32 is concurrently an access point and a station connected to another access point).
  9. - Various security modes for the above (WPA, WPA2, WEP, etc.)
  10. - Scanning for access points (active & passive scanning).
  11. - Promiscuous mode monitoring of IEEE802.11 WiFi packets.
  12. Application Examples
  13. --------------------
  14. See :example:`wifi` directory of ESP-IDF examples that contains the following applications:
  15. * Simple application showing how to connect ESP32 module to an Access Point - `esp-idf-template <https://github.com/espressif/esp-idf-template>`_.
  16. * Using power save mode of Wi-Fi - :example:`wifi/power_save`.
  17. API Reference
  18. -------------
  19. .. include:: /_build/inc/esp_wifi.inc
  20. .. include:: /_build/inc/esp_wifi_types.inc