2016-09-26 20:30:07 -04:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
2022-04-20 05:02:26 -04:00
|
|
|
orsource "$IDF_PATH/examples/common_components/env_caps/$IDF_TARGET/Kconfig.env_caps"
|
|
|
|
|
2021-01-29 13:20:40 -05:00
|
|
|
choice BLINK_LED
|
|
|
|
prompt "Blink LED type"
|
2023-01-06 02:27:19 -05:00
|
|
|
default BLINK_LED_GPIO if IDF_TARGET_ESP32 || !SOC_RMT_SUPPORTED
|
2021-08-29 22:36:35 -04:00
|
|
|
default BLINK_LED_RMT
|
2021-01-29 13:20:40 -05:00
|
|
|
help
|
|
|
|
Defines the default peripheral for blink example
|
|
|
|
|
|
|
|
config BLINK_LED_GPIO
|
|
|
|
bool "GPIO"
|
|
|
|
config BLINK_LED_RMT
|
|
|
|
bool "RMT - Addressable LED"
|
|
|
|
endchoice
|
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
config BLINK_GPIO
|
|
|
|
int "Blink GPIO number"
|
2022-04-20 05:02:26 -04:00
|
|
|
range ENV_GPIO_RANGE_MIN ENV_GPIO_OUT_RANGE_MAX
|
2023-01-06 02:27:19 -05:00
|
|
|
default 5 if IDF_TARGET_ESP32
|
2021-01-29 13:20:40 -05:00
|
|
|
default 18 if IDF_TARGET_ESP32S2
|
2021-08-16 00:11:12 -04:00
|
|
|
default 48 if IDF_TARGET_ESP32S3
|
2023-01-06 02:27:19 -05:00
|
|
|
default 8
|
2019-01-25 11:10:53 -05:00
|
|
|
help
|
2021-01-29 13:20:40 -05:00
|
|
|
GPIO number (IOxx) to blink on and off or the RMT signal for the addressable LED.
|
2019-01-25 11:10:53 -05:00
|
|
|
Some GPIOs are used for other purposes (flash connections, etc.) and cannot be used to blink.
|
2016-09-26 20:30:07 -04:00
|
|
|
|
2021-01-29 13:20:40 -05:00
|
|
|
config BLINK_PERIOD
|
|
|
|
int "Blink period in ms"
|
|
|
|
range 10 3600000
|
|
|
|
default 1000
|
|
|
|
help
|
|
|
|
Define the blinking period in milliseconds.
|
|
|
|
|
2016-09-26 20:30:07 -04:00
|
|
|
endmenu
|