Kconfig.projbuild 678 B

1234567891011121314151617181920212223242526
  1. menu "Example Configuration"
  2. config ESP_WIFI_SSID
  3. string "WiFi SSID"
  4. default "myssid"
  5. help
  6. SSID (network name) for the example to connect to.
  7. config ESP_WIFI_PASSWORD
  8. string "WiFi Password"
  9. default "mypassword"
  10. help
  11. WiFi password (WPA or WPA2) for the example to use.
  12. config ESP_WIFI_CHANNEL
  13. int "WiFi Channel"
  14. range 1 13
  15. default 1
  16. help
  17. WiFi channel (network channel) for the example to use.
  18. config ESP_MAX_STA_CONN
  19. int "Maximal STA connections"
  20. default 4
  21. help
  22. Max number of the STA connects to AP.
  23. endmenu