Repo for ESP32 Weather Station Development
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
413B

  1. # put here your custom config value
  2. menu "WIFI AP Configuration"
  3. config ESP_WIFI_SSID
  4. string "WiFi SSID"
  5. default "myssid"
  6. help
  7. SSID (network name) for the example to connect to.
  8. config ESP_WIFI_PASSWORD
  9. string "WiFi Password"
  10. default "mypassword"
  11. help
  12. WiFi password (WPA or WPA2) for the example to use.
  13. config ESP_WIFI_RETRIES
  14. int "WiFi connection retries"
  15. default 5
  16. endmenu