summaryrefslogtreecommitdiffstats
path: root/esp32/main/Kconfig.projbuild.example
blob: 9c03e2bc7e95c827334f204b3c59ca4e39e338b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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