From 4dfc5e9a9b153f19d9e1f90cf7a2c70db7a58496 Mon Sep 17 00:00:00 2001 From: Peter Siegmund Date: Thu, 6 Jun 2024 22:50:05 +0200 Subject: [PATCH] add custom menuconfig for wifi used later Signed-off-by: Peter Siegmund --- ePaper-ESP-IDF/main/Kconfig.projbuild | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ePaper-ESP-IDF/main/Kconfig.projbuild diff --git a/ePaper-ESP-IDF/main/Kconfig.projbuild b/ePaper-ESP-IDF/main/Kconfig.projbuild new file mode 100644 index 0000000..c349cf2 --- /dev/null +++ b/ePaper-ESP-IDF/main/Kconfig.projbuild @@ -0,0 +1,13 @@ +menu "WiFi Configuration Options" + config WIFI_SSID + string "WIFI SSID" + default "" + help + SSID of the WiFi network to connect to. + + config WIFI_PASSWORD + string "WIFI Password" + default "" + help + Password of the WiFi network to connect to. +endmenu