When no WiFi credentials are configured or connection fails, the device automatically starts a soft AP (MimiClaw-XXXX) with a captive portal. Users can configure WiFi, LLM, Telegram, Feishu, Proxy and Search settings via a mobile-friendly web page, then the device restarts and connects with the new credentials. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
32 lines
937 B
CMake
32 lines
937 B
CMake
idf_component_register(
|
|
SRCS
|
|
"mimi.c"
|
|
"bus/message_bus.c"
|
|
"wifi/wifi_manager.c"
|
|
"channels/telegram/telegram_bot.c"
|
|
"channels/feishu/feishu_bot.c"
|
|
"llm/llm_proxy.c"
|
|
"agent/agent_loop.c"
|
|
"agent/context_builder.c"
|
|
"memory/memory_store.c"
|
|
"memory/session_mgr.c"
|
|
"gateway/ws_server.c"
|
|
"cli/serial_cli.c"
|
|
"proxy/http_proxy.c"
|
|
"cron/cron_service.c"
|
|
"heartbeat/heartbeat.c"
|
|
"tools/tool_registry.c"
|
|
"tools/tool_cron.c"
|
|
"tools/tool_web_search.c"
|
|
"tools/tool_get_time.c"
|
|
"tools/tool_files.c"
|
|
"skills/skill_loader.c"
|
|
"onboard/wifi_onboard.c"
|
|
INCLUDE_DIRS
|
|
"."
|
|
REQUIRES
|
|
nvs_flash esp_wifi esp_netif esp_http_client esp_http_server
|
|
esp_https_ota esp_event json spiffs console vfs app_update esp-tls
|
|
esp_timer esp_websocket_client
|
|
)
|