Initial commit.
Some checks failed
Sync remain PRs to Jira / Sync PRs to Jira (push) Has been cancelled

This commit is contained in:
2025-04-30 16:33:57 +03:00
commit 34cf3ec285
193 changed files with 25742 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
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