chore: import local project into Gitea
This commit is contained in:
85
main/Kconfig.projbuild
Normal file
85
main/Kconfig.projbuild
Normal file
@@ -0,0 +1,85 @@
|
||||
menu "Application Configuration"
|
||||
|
||||
config APP_WIFI_SSID
|
||||
string "Wi-Fi SSID"
|
||||
default "YOUR_WIFI_SSID"
|
||||
help
|
||||
SSID of the Wi-Fi network to connect to.
|
||||
|
||||
config APP_WIFI_PASSWORD
|
||||
string "Wi-Fi Password"
|
||||
default "YOUR_WIFI_PASSWORD"
|
||||
help
|
||||
Password of the Wi-Fi network.
|
||||
|
||||
config APP_GEMINI_API_KEY
|
||||
string "Gemini API Key"
|
||||
default "YOUR_GEMINI_API_KEY"
|
||||
help
|
||||
API key for accessing the Gemini API.
|
||||
|
||||
menu "LCD Pin Configuration"
|
||||
|
||||
config LCD_PIN_MOSI
|
||||
int "LCD MOSI Pin"
|
||||
default 7
|
||||
help
|
||||
GPIO pin for LCD MOSI.
|
||||
|
||||
config LCD_PIN_SCLK
|
||||
int "LCD SCLK Pin"
|
||||
default 6
|
||||
help
|
||||
GPIO pin for LCD SCLK.
|
||||
|
||||
config LCD_PIN_CS
|
||||
int "LCD CS Pin"
|
||||
default 5
|
||||
help
|
||||
GPIO pin for LCD CS.
|
||||
|
||||
config LCD_PIN_DC
|
||||
int "LCD DC Pin"
|
||||
default 2
|
||||
help
|
||||
GPIO pin for LCD DC.
|
||||
|
||||
config LCD_PIN_RST
|
||||
int "LCD RST Pin"
|
||||
default 4
|
||||
help
|
||||
GPIO pin for LCD RST.
|
||||
|
||||
config LCD_PIN_BL
|
||||
int "LCD Backlight Pin"
|
||||
default 15
|
||||
help
|
||||
GPIO pin for LCD Backlight.
|
||||
|
||||
config LCD_PIN_BUTTON
|
||||
int "Button Pin"
|
||||
default 0
|
||||
help
|
||||
GPIO pin for the user button.
|
||||
|
||||
config LCD_PIN_LED
|
||||
int "Status LED Pin"
|
||||
default 8
|
||||
help
|
||||
GPIO pin for the status LED.
|
||||
|
||||
config LCD_PIN_SPEAKER
|
||||
int "Speaker Pin"
|
||||
default 25
|
||||
help
|
||||
GPIO pin for the speaker.
|
||||
|
||||
config LCD_PIN_BAT_EN
|
||||
int "Battery Enable Pin"
|
||||
default 15
|
||||
help
|
||||
GPIO pin to enable battery power.
|
||||
|
||||
endmenu
|
||||
|
||||
endmenu
|
||||
Reference in New Issue
Block a user