Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions main/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ idf_component_register(
lwip
esp_driver_usb_serial_jtag
app_update
wifi_provisioning
)

set(ZCLAW_VERSION_FILE "${CMAKE_SOURCE_DIR}/VERSION")
Expand Down
20 changes: 20 additions & 0 deletions main/Kconfig.projbuild
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,26 @@ menu "zclaw Configuration"
help
WiFi network password fallback. Leave empty to use NVS provisioning.

menu "BLE Provisioning"
depends on BT_ENABLED

config ZCLAW_BLE_PROVISIONING
bool "Enable BLE WiFi provisioning when device is unprovisioned"
default n
help
When enabled and no WiFi credentials exist in NVS, the device
starts BLE provisioning service so a phone app can submit WiFi
credentials without serial provisioning.

config ZCLAW_BLE_PROV_POP
string "BLE provisioning proof-of-possession (optional)"
default ""
depends on ZCLAW_BLE_PROVISIONING
help
Optional PoP for security-1 provisioning. Leave empty to use
security-0 (no PoP) for faster local setup.
endmenu

config ZCLAW_CLAUDE_API_KEY
string "LLM API Key (for testing only)"
default ""
Expand Down
Loading