Kconfig.projbuild 524 B

1234567891011121314151617181920
  1. menu "Example Configuration"
  2. config ESP_WIFI_SSID
  3. string "SoftAP SSID"
  4. default "esp32_ssid"
  5. help
  6. SSID (network name) to set up the softAP with.
  7. config ESP_WIFI_PASSWORD
  8. string "SoftAP Password"
  9. default "esp32_pwd"
  10. help
  11. WiFi password (WPA or WPA2) for the example to use for the softAP.
  12. config ESP_MAX_STA_CONN
  13. int "Maximal STA connections"
  14. default 4
  15. help
  16. Max number of the STA connects to AP.
  17. endmenu