blob: b4601d41b3ecb87479ea9fc401c54dca7b9fd51c (
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
30
31
32
33
34
35
36
37
38
|
menu "Example 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 BROKER_HOST
string "Broker URL"
default "***"
help
URL of an mqtt broker which this example connects to.
config BROKER_USERNAME
string "Broker username"
default "***"
help
Username for authentication with the MQTT broker.
config BROKER_PASSWORD
string "Broker password"
default "***"
help
Password for authentication with the MQTT broker.
config BROKER_CLIENT_ID
string "Client ID"
default "***"
help
Client id to use when connecting to the MQTT broker.
endmenu
|