forked from xiaozhi/xiaozhi-esp32
47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
menu "Xiaozhi Assistant"
|
||
|
||
config OTA_VERSION_URL
|
||
string "OTA Version URL"
|
||
default "https://api.tenclass.net/xiaozhi/ota/"
|
||
help
|
||
The application will access this URL to check for updates.
|
||
|
||
config WEBSOCKET_URL
|
||
string "Websocket URL"
|
||
default "wss://api.tenclass.net/xiaozhi/v1/"
|
||
help
|
||
Communication with the server through websocket after wake up.
|
||
|
||
config WEBSOCKET_ACCESS_TOKEN
|
||
string "Websocket Access Token"
|
||
default "test-token"
|
||
help
|
||
Access token for websocket communication.
|
||
|
||
choice BOARD_TYPE
|
||
prompt "Board Type"
|
||
default BOARD_TYPE_BREAD_COMPACT_WIFI
|
||
help
|
||
Board type. 开发板类型
|
||
config BOARD_TYPE_BREAD_COMPACT_WIFI
|
||
bool "面包板新版接线(WiFi)"
|
||
config BOARD_TYPE_BREAD_COMPACT_ML307
|
||
bool "面包板新版接线(ML307 AT)"
|
||
config BOARD_TYPE_ESP_BOX_3
|
||
bool "ESP BOX 3"
|
||
config BOARD_TYPE_KEVIN_BOX_0
|
||
bool "Kevin Box 0"
|
||
config BOARD_TYPE_KEVIN_BOX_1
|
||
bool "Kevin Box 1"
|
||
config BOARD_TYPE_LICHUANG_DEV
|
||
bool "立创开发板"
|
||
endchoice
|
||
|
||
config USE_AFE_SR
|
||
bool "Use Espressif AFE SR"
|
||
default y
|
||
help
|
||
Use AFE SR for wake word detection.
|
||
|
||
endmenu
|