mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
cccdb3e4aa
Added the RMT/addr LED blink to the example and more detailed README.md Moved component/led_strip to common_components Added missing README file to common_components/led_strip README file update Makefile and Kconfig fixed for led_strip component Fixing end-of-line on main/blink.c Component updated to handle multiple instances Added note on the RMT channel number (ESP32 and ESP32-S2) Removed components folder from rmt/led_strip example and README updated Changed the led_strip_denit function and added ESP32-C3 RMT info on channel configuration Updates on README, Kconfig default settings and configure_led() function added
47 lines
1.4 KiB
Plaintext
47 lines
1.4 KiB
Plaintext
menu "Example Configuration"
|
|
|
|
choice BLINK_LED
|
|
prompt "Blink LED type"
|
|
default BLINK_LED_RMT if IDF_TARGET_ESP32C3
|
|
default BLINK_LED_RMT if IDF_TARGET_ESP32S2
|
|
default BLINK_LED_GPIO
|
|
help
|
|
Defines the default peripheral for blink example
|
|
|
|
config BLINK_LED_GPIO
|
|
bool "GPIO"
|
|
config BLINK_LED_RMT
|
|
bool "RMT - Addressable LED"
|
|
endchoice
|
|
|
|
config BLINK_LED_RMT_CHANNEL
|
|
depends on BLINK_LED_RMT
|
|
int "RMT Channel"
|
|
range 0 7
|
|
default 0
|
|
help
|
|
Set the RMT peripheral channel.
|
|
ESP32 RMT channel from 0 to 7
|
|
ESP32-S2 RMT channel from 0 to 3
|
|
ESP32-C3 RMT channel from 0 to 1
|
|
|
|
config BLINK_GPIO
|
|
int "Blink GPIO number"
|
|
range 0 34
|
|
default 8 if IDF_TARGET_ESP32C3
|
|
default 18 if IDF_TARGET_ESP32S2
|
|
default 5
|
|
help
|
|
GPIO number (IOxx) to blink on and off or the RMT signal for the addressable LED.
|
|
Some GPIOs are used for other purposes (flash connections, etc.) and cannot be used to blink.
|
|
GPIOs 35-39 are input-only so cannot be used as outputs.
|
|
|
|
config BLINK_PERIOD
|
|
int "Blink period in ms"
|
|
range 10 3600000
|
|
default 1000
|
|
help
|
|
Define the blinking period in milliseconds.
|
|
|
|
endmenu
|