1
0

Kconfig.projbuild 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. menu "Fridge Sensor Application Configuration"
  2. config ESP_WIFI_SSID
  3. string "WiFi SSID"
  4. default "Hemnet3"
  5. help
  6. SSID (network name) to connect to.
  7. config ESP_WIFI_PASSWORD
  8. string "WiFi Password"
  9. default "mypassword"
  10. help
  11. WiFi password (WPA or WPA2) to use.
  12. config ESP_MQTT_PASSWORD
  13. string "MQTT Password"
  14. default "mypassword"
  15. help
  16. MQTT password
  17. config ESP_MQTT_UNAME
  18. string "MQTT User"
  19. default "myuser"
  20. help
  21. MQTT Username
  22. choice BLINK_LED
  23. prompt "Blink LED type"
  24. default BLINK_LED_GPIO if IDF_TARGET_ESP32
  25. default BLINK_LED_RMT
  26. help
  27. Defines the default peripheral for blink example
  28. config BLINK_LED_GPIO
  29. bool "GPIO"
  30. config BLINK_LED_RMT
  31. bool "RMT - Addressable LED"
  32. endchoice
  33. config BLINK_GPIO
  34. int "Blink GPIO number"
  35. range 0 48
  36. default 8 if IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32H2
  37. default 18 if IDF_TARGET_ESP32S2
  38. default 48 if IDF_TARGET_ESP32S3
  39. default 5
  40. help
  41. GPIO number (IOxx) to blink on and off or the RMT signal for the addressable LED.
  42. Some GPIOs are used for other purposes (flash connections, etc.) and cannot be used to blink.
  43. endmenu