Kconfig.projbuild 775 B

12345678910111213141516171819202122232425262728293031
  1. menu "WIFI_433_Transceiver Application Configuration"
  2. config BACK_END_SERVER_IP_ADDRESS
  3. string "Back-end server IP Address"
  4. default "192.168.1.110"
  5. config ESP_WIFI_SSID
  6. string "WiFi SSID"
  7. default "Hemnet3"
  8. help
  9. SSID (network name) to connect to.
  10. config ESP_WIFI_PASSWORD
  11. string "WiFi Password"
  12. default "mypassword"
  13. help
  14. WiFi password (WPA or WPA2) to use.
  15. config UNIT_ID
  16. int "Unit ID"
  17. default 1
  18. help
  19. Units ID. First transceiver is 1, the second one is 2 etc. Translates to 'B', 'C' etc.
  20. config UDP_PORT_NO
  21. int "UDP Port number"
  22. default 53000
  23. help
  24. The UDP Port number to listen on.
  25. endmenu