Files
rmaker_multi_device/examples/gpio/main/Kconfig.projbuild
ismail 34cf3ec285
Some checks failed
Sync remain PRs to Jira / Sync PRs to Jira (push) Has been cancelled
Initial commit.
2025-04-30 16:33:57 +03:00

30 lines
987 B
Plaintext

menu "Example Configuration"
config EXAMPLE_BOARD_BUTTON_GPIO
int "Boot Button GPIO"
default 9 if IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32C2 || IDF_TARGET_ESP32H2
default 0
help
GPIO number on which the "Boot" button is connected. This is generally used
by the application for custom operations like toggling states, resetting to defaults, etc.
config EXAMPLE_OUTPUT_GPIO_RED
int "Red GPIO"
default 2
help
Control digital RGB LEDs. Need to connect this GPIO to the red pin of the LED.
config EXAMPLE_OUTPUT_GPIO_GREEN
int "Green GPIO"
default 4
help
Control digital RGB LEDs. Need to connect this GPIO to the green pin of the LED.
config EXAMPLE_OUTPUT_GPIO_BLUE
int "Blue GPIO"
default 5
help
Control digital RGB LEDs. Need to connect this GPIO to the blue pin of the LED.
endmenu