forked from xiaozhi/xiaozhi-esp32
bump to 0.3.2
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
# CMakeLists in this exact order for cmake to work correctly
|
# CMakeLists in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(PROJECT_VER "0.3.1")
|
set(PROJECT_VER "0.3.2")
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(xiaozhi)
|
project(xiaozhi)
|
||||||
|
|||||||
@@ -154,6 +154,14 @@ void Application::Start() {
|
|||||||
|
|
||||||
ESP_LOGI(TAG, "ML307 IMEI: %s", ml307_at_modem_.GetImei().c_str());
|
ESP_LOGI(TAG, "ML307 IMEI: %s", ml307_at_modem_.GetImei().c_str());
|
||||||
ESP_LOGI(TAG, "ML307 ICCID: %s", ml307_at_modem_.GetIccid().c_str());
|
ESP_LOGI(TAG, "ML307 ICCID: %s", ml307_at_modem_.GetIccid().c_str());
|
||||||
|
|
||||||
|
// If low power, the material ready event will be triggered by the modem because of a reset
|
||||||
|
ml307_at_modem_.OnMaterialReady([this]() {
|
||||||
|
ESP_LOGI(TAG, "ML307 material ready");
|
||||||
|
Schedule([this]() {
|
||||||
|
SetChatState(kChatStateIdle);
|
||||||
|
});
|
||||||
|
});
|
||||||
#else
|
#else
|
||||||
// Try to connect to WiFi, if failed, launch the WiFi configuration AP
|
// Try to connect to WiFi, if failed, launch the WiFi configuration AP
|
||||||
auto& wifi_station = WifiStation::GetInstance();
|
auto& wifi_station = WifiStation::GetInstance();
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ dependencies:
|
|||||||
78/esp-builtin-led: "^1.0.2"
|
78/esp-builtin-led: "^1.0.2"
|
||||||
78/esp-wifi-connect: "^1.1.0"
|
78/esp-wifi-connect: "^1.1.0"
|
||||||
78/esp-opus-encoder: "^1.0.2"
|
78/esp-opus-encoder: "^1.0.2"
|
||||||
78/esp-ml307: "^1.2.0"
|
78/esp-ml307: "^1.2.1"
|
||||||
espressif/esp-sr: "^1.9.0"
|
espressif/esp-sr: "^1.9.0"
|
||||||
espressif/button: "^3.3.1"
|
espressif/button: "^3.3.1"
|
||||||
lvgl/lvgl: "^8.4.0"
|
lvgl/lvgl: "^8.4.0"
|
||||||
|
|||||||
Reference in New Issue
Block a user