summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2023-06-21 10:50:55 +0800
committerSadeep Madurange <sadeep@asciimx.com>2023-06-21 10:50:55 +0800
commitf3988cd231ff5200e95db82e4e203cb4188a68b4 (patch)
tree0fdcab51637a3f6ef2f94b7ae76cd5004bc6c91d
parent24d9a11a326dc8e805b177c45bfe23e4675a2e05 (diff)
downloadesp8266-dht22-weather-station-f3988cd231ff5200e95db82e4e203cb4188a68b4.tar.gz
Sample config.
-rw-r--r--main/Kconfig.projbuild.example38
1 files changed, 38 insertions, 0 deletions
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