2019-01-31 16:09:34 +00:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
2019-05-09 14:43:06 +00:00
|
|
|
config EXAMPLE_BROKER_SSL_URI
|
2019-01-31 16:09:34 +00:00
|
|
|
string "Broker SSL URL"
|
|
|
|
default "mqtts://iot.eclipse.org:8883"
|
|
|
|
help
|
|
|
|
URL of an mqtt broker for ssl transport
|
|
|
|
|
2019-05-09 14:43:06 +00:00
|
|
|
config EXAMPLE_BROKER_TCP_URI
|
2019-01-31 16:09:34 +00:00
|
|
|
string "Broker TCP URL"
|
|
|
|
default "mqtt://iot.eclipse.org:1883"
|
|
|
|
help
|
|
|
|
URL of an mqtt broker for tcp transport
|
|
|
|
|
2019-05-09 14:43:06 +00:00
|
|
|
config EXAMPLE_BROKER_WS_URI
|
2019-01-31 16:09:34 +00:00
|
|
|
string "Broker WS URL"
|
|
|
|
default "ws://iot.eclipse.org:80/ws"
|
|
|
|
help
|
|
|
|
URL of an mqtt broker for ws transport
|
|
|
|
|
2019-05-09 14:43:06 +00:00
|
|
|
config EXAMPLE_BROKER_WSS_URI
|
2019-01-31 16:09:34 +00:00
|
|
|
string "Broker WSS URL"
|
|
|
|
default "wss://iot.eclipse.org:443/ws"
|
|
|
|
help
|
|
|
|
URL of an mqtt broker for wss transport
|
|
|
|
|
2019-05-09 14:43:06 +00:00
|
|
|
config EXAMPLE_PUBLISH_TOPIC
|
2019-01-31 16:09:34 +00:00
|
|
|
string "publish topic"
|
|
|
|
default "/topic/publish/esp2py"
|
|
|
|
help
|
|
|
|
topic to which esp32 client publishes
|
|
|
|
|
2019-05-09 14:43:06 +00:00
|
|
|
config EXAMPLE_SUBSCIBE_TOPIC
|
2019-01-31 16:09:34 +00:00
|
|
|
string "subscribe topic"
|
|
|
|
default "/topic/subscribe/py2esp"
|
|
|
|
help
|
|
|
|
topic to which esp32 client subsribes (and expects data)
|
|
|
|
|
2019-05-09 14:43:06 +00:00
|
|
|
config EXAMPLE_BROKER_CERTIFICATE_OVERRIDE
|
2019-01-31 16:09:34 +00:00
|
|
|
string "Broker certificate override"
|
|
|
|
default ""
|
|
|
|
help
|
|
|
|
Please leave empty if broker certificate included from a textfile; otherwise fill in a base64 part of PEM
|
|
|
|
format certificate
|
|
|
|
|
2019-05-09 14:43:06 +00:00
|
|
|
config EXAMPLE_BROKER_CERTIFICATE_OVERRIDDEN
|
2019-01-31 16:09:34 +00:00
|
|
|
bool
|
2019-05-09 14:43:06 +00:00
|
|
|
default y if EXAMPLE_BROKER_CERTIFICATE_OVERRIDE != ""
|
2019-01-31 16:09:34 +00:00
|
|
|
|
|
|
|
endmenu
|