Kconfig.projbuild 732 B

12345678910111213141516171819202122232425262728293031323334
  1. menu "HomeEnergyMeter 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. config ESP_PULSES_PER_KWH
  23. string "Pulses per kWh"
  24. default "10000"
  25. help
  26. Number of pulses per kWh
  27. endmenu