From 1bb89129ca67e75ea27ac4c8eec4671a1a96d35b Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Sun, 22 Dec 2024 08:32:40 -0500 Subject: [PATCH] ESP IDF Robot --- ESP-IDF_Robot/main/Kconfig.projbuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/ESP-IDF_Robot/main/Kconfig.projbuild b/ESP-IDF_Robot/main/Kconfig.projbuild index d0cd42e60..79053bafa 100644 --- a/ESP-IDF_Robot/main/Kconfig.projbuild +++ b/ESP-IDF_Robot/main/Kconfig.projbuild @@ -38,7 +38,7 @@ menu "Example Configuration" default 5 if IDF_TARGET_ESP32 default 18 if IDF_TARGET_ESP32S2 default 48 if IDF_TARGET_ESP32S3 - default 8 + default 10 help GPIO number (IOxx) to blink on and off the LED. Some GPIOs are used for other purposes (flash connections, etc.) and cannot be used to blink. @@ -46,8 +46,14 @@ menu "Example Configuration" config BLINK_PERIOD int "Blink period in ms" range 10 3600000 - default 1000 + default 750 help Define the blinking period in milliseconds. + config BUTTON_GPIO + int "On-board push button GPIO number" + default 3 + help + GPIO number (IOxx) of on-board push button. + endmenu