diff options
Diffstat (limited to 'esp32/main/Kconfig.projbuild.example')
| -rw-r--r-- | esp32/main/Kconfig.projbuild.example | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/esp32/main/Kconfig.projbuild.example b/esp32/main/Kconfig.projbuild.example new file mode 100644 index 0000000..9c03e2b --- /dev/null +++ b/esp32/main/Kconfig.projbuild.example @@ -0,0 +1,29 @@ +menu "Mimir Configuration" + + config WIFI_SSID + string "WiFi SSID" + default "" + help + SSID (network name) for the example to connect to. + + config WIFI_PASS + string "WiFi Password" + default "" + help + WiFi password (WPA or WPA2) for the example to use. + + config UDP_ADDR + string "IPV4 Address" + default "" + help + IPV4 address to which the client example will send data. + + config UDP_PORT + int "Port" + range 0 65535 + default 3333 + help + The remote port to which the client example will send data. + +endmenu + |
