1menu "Example Configuration"
2
3    config BLINK_GPIO
4        int "Blink GPIO number"
5        range 0 48
6        default 8 if IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32H2
7        default 18 if IDF_TARGET_ESP32S2
8        default 48 if IDF_TARGET_ESP32S3
9        default 5
10        help
11            GPIO number (IOxx) to blink on and off or the RMT signal for the addressable LED.
12            Some GPIOs are used for other purposes (flash connections, etc.) and cannot be used to blink.
13
14endmenu
15