From f3988cd231ff5200e95db82e4e203cb4188a68b4 Mon Sep 17 00:00:00 2001 From: Sadeep Madurange Date: Wed, 21 Jun 2023 10:50:55 +0800 Subject: Sample config. --- main/Kconfig.projbuild.example | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 main/Kconfig.projbuild.example diff --git a/main/Kconfig.projbuild.example b/main/Kconfig.projbuild.example new file mode 100644 index 0000000..b4601d4 --- /dev/null +++ b/main/Kconfig.projbuild.example @@ -0,0 +1,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 -- cgit v1.2.3