forked from xiaozhi/xiaozhi-esp32
209 lines
6.5 KiB
C++
209 lines
6.5 KiB
C++
#include "ml307_board.h"
|
||
|
||
#include "application.h"
|
||
#include "display.h"
|
||
#include "font_awesome_symbols.h"
|
||
#include "assets/lang_config.h"
|
||
|
||
#include <esp_log.h>
|
||
#include <esp_timer.h>
|
||
#include <ml307_http.h>
|
||
#include <ml307_ssl_transport.h>
|
||
#include <web_socket.h>
|
||
#include <ml307_mqtt.h>
|
||
#include <ml307_udp.h>
|
||
#include <opus_encoder.h>
|
||
|
||
static const char *TAG = "Ml307Board";
|
||
|
||
Ml307Board::Ml307Board(gpio_num_t tx_pin, gpio_num_t rx_pin, size_t rx_buffer_size) : modem_(tx_pin, rx_pin, rx_buffer_size) {
|
||
}
|
||
|
||
std::string Ml307Board::GetBoardType() {
|
||
return "ml307";
|
||
}
|
||
|
||
void Ml307Board::StartNetwork() {
|
||
auto display = Board::GetInstance().GetDisplay();
|
||
display->SetStatus(Lang::Strings::DETECTING_MODULE);
|
||
modem_.SetDebug(false);
|
||
modem_.SetBaudRate(921600);
|
||
|
||
auto& application = Application::GetInstance();
|
||
// If low power, the material ready event will be triggered by the modem because of a reset
|
||
modem_.OnMaterialReady([this, &application]() {
|
||
ESP_LOGI(TAG, "ML307 material ready");
|
||
application.Schedule([this, &application]() {
|
||
application.SetDeviceState(kDeviceStateIdle);
|
||
WaitForNetworkReady();
|
||
});
|
||
});
|
||
|
||
WaitForNetworkReady();
|
||
}
|
||
|
||
void Ml307Board::WaitForNetworkReady() {
|
||
auto& application = Application::GetInstance();
|
||
auto display = Board::GetInstance().GetDisplay();
|
||
display->SetStatus(Lang::Strings::REGISTERING_NETWORK);
|
||
int result = modem_.WaitForNetworkReady();
|
||
if (result == -1) {
|
||
application.Alert(Lang::Strings::ERROR, Lang::Strings::PIN_ERROR, "sad", Lang::Sounds::P3_ERR_PIN);
|
||
return;
|
||
} else if (result == -2) {
|
||
application.Alert(Lang::Strings::ERROR, Lang::Strings::REG_ERROR, "sad", Lang::Sounds::P3_ERR_REG);
|
||
return;
|
||
}
|
||
|
||
// Print the ML307 modem information
|
||
std::string module_name = modem_.GetModuleName();
|
||
std::string imei = modem_.GetImei();
|
||
std::string iccid = modem_.GetIccid();
|
||
ESP_LOGI(TAG, "ML307 Module: %s", module_name.c_str());
|
||
ESP_LOGI(TAG, "ML307 IMEI: %s", imei.c_str());
|
||
ESP_LOGI(TAG, "ML307 ICCID: %s", iccid.c_str());
|
||
|
||
// Close all previous connections
|
||
modem_.ResetConnections();
|
||
|
||
// Enable sleep mode
|
||
modem_.SetSleepMode(true, 30);
|
||
}
|
||
|
||
Http* Ml307Board::CreateHttp() {
|
||
return new Ml307Http(modem_);
|
||
}
|
||
|
||
WebSocket* Ml307Board::CreateWebSocket() {
|
||
return new WebSocket(new Ml307SslTransport(modem_, 0));
|
||
}
|
||
|
||
Mqtt* Ml307Board::CreateMqtt() {
|
||
return new Ml307Mqtt(modem_, 0);
|
||
}
|
||
|
||
Udp* Ml307Board::CreateUdp() {
|
||
return new Ml307Udp(modem_, 0);
|
||
}
|
||
|
||
const char* Ml307Board::GetNetworkStateIcon() {
|
||
if (!modem_.network_ready()) {
|
||
return FONT_AWESOME_SIGNAL_OFF;
|
||
}
|
||
int csq = modem_.GetCsq();
|
||
if (csq == -1) {
|
||
return FONT_AWESOME_SIGNAL_OFF;
|
||
} else if (csq >= 0 && csq <= 14) {
|
||
return FONT_AWESOME_SIGNAL_1;
|
||
} else if (csq >= 15 && csq <= 19) {
|
||
return FONT_AWESOME_SIGNAL_2;
|
||
} else if (csq >= 20 && csq <= 24) {
|
||
return FONT_AWESOME_SIGNAL_3;
|
||
} else if (csq >= 25 && csq <= 31) {
|
||
return FONT_AWESOME_SIGNAL_4;
|
||
}
|
||
|
||
ESP_LOGW(TAG, "Invalid CSQ: %d", csq);
|
||
return FONT_AWESOME_SIGNAL_OFF;
|
||
}
|
||
|
||
std::string Ml307Board::GetBoardJson() {
|
||
// Set the board type for OTA
|
||
std::string board_json = std::string("{\"type\":\"" BOARD_TYPE "\",");
|
||
board_json += "\"name\":\"" BOARD_NAME "\",";
|
||
board_json += "\"revision\":\"" + modem_.GetModuleName() + "\",";
|
||
board_json += "\"carrier\":\"" + modem_.GetCarrierName() + "\",";
|
||
board_json += "\"csq\":\"" + std::to_string(modem_.GetCsq()) + "\",";
|
||
board_json += "\"imei\":\"" + modem_.GetImei() + "\",";
|
||
board_json += "\"iccid\":\"" + modem_.GetIccid() + "\",";
|
||
board_json += "\"cereg\":" + modem_.GetRegistrationState().ToString() + "}";
|
||
return board_json;
|
||
}
|
||
|
||
void Ml307Board::SetPowerSaveMode(bool enabled) {
|
||
// TODO: Implement power save mode for ML307
|
||
}
|
||
|
||
std::string Ml307Board::GetDeviceStatusJson() {
|
||
/*
|
||
* 返回设备状态JSON
|
||
*
|
||
* 返回的JSON结构如下:
|
||
* {
|
||
* "audio_speaker": {
|
||
* "volume": 70
|
||
* },
|
||
* "screen": {
|
||
* "brightness": 100,
|
||
* "theme": "light"
|
||
* },
|
||
* "battery": {
|
||
* "level": 50,
|
||
* "charging": true
|
||
* },
|
||
* "network": {
|
||
* "type": "cellular",
|
||
* "carrier": "CHINA MOBILE",
|
||
* "csq": 10
|
||
* }
|
||
* }
|
||
*/
|
||
auto& board = Board::GetInstance();
|
||
auto root = cJSON_CreateObject();
|
||
|
||
// Audio speaker
|
||
auto audio_speaker = cJSON_CreateObject();
|
||
auto audio_codec = board.GetAudioCodec();
|
||
if (audio_codec) {
|
||
cJSON_AddNumberToObject(audio_speaker, "volume", audio_codec->output_volume());
|
||
}
|
||
cJSON_AddItemToObject(root, "audio_speaker", audio_speaker);
|
||
|
||
// Screen brightness
|
||
auto backlight = board.GetBacklight();
|
||
auto screen = cJSON_CreateObject();
|
||
if (backlight) {
|
||
cJSON_AddNumberToObject(screen, "brightness", backlight->brightness());
|
||
}
|
||
auto display = board.GetDisplay();
|
||
if (display && display->height() > 64) { // For LCD display only
|
||
cJSON_AddStringToObject(screen, "theme", display->GetTheme().c_str());
|
||
}
|
||
cJSON_AddItemToObject(root, "screen", screen);
|
||
|
||
// Battery
|
||
int battery_level = 0;
|
||
bool charging = false;
|
||
bool discharging = false;
|
||
if (board.GetBatteryLevel(battery_level, charging, discharging)) {
|
||
cJSON* battery = cJSON_CreateObject();
|
||
cJSON_AddNumberToObject(battery, "level", battery_level);
|
||
cJSON_AddBoolToObject(battery, "charging", charging);
|
||
cJSON_AddItemToObject(root, "battery", battery);
|
||
}
|
||
|
||
// Network
|
||
auto network = cJSON_CreateObject();
|
||
cJSON_AddStringToObject(network, "type", "cellular");
|
||
cJSON_AddStringToObject(network, "carrier", modem_.GetCarrierName().c_str());
|
||
int csq = modem_.GetCsq();
|
||
if (csq == -1) {
|
||
cJSON_AddStringToObject(network, "signal", "unknown");
|
||
} else if (csq >= 0 && csq <= 14) {
|
||
cJSON_AddStringToObject(network, "signal", "very weak");
|
||
} else if (csq >= 15 && csq <= 19) {
|
||
cJSON_AddStringToObject(network, "signal", "weak");
|
||
} else if (csq >= 20 && csq <= 24) {
|
||
cJSON_AddStringToObject(network, "signal", "medium");
|
||
} else if (csq >= 25 && csq <= 31) {
|
||
cJSON_AddStringToObject(network, "signal", "strong");
|
||
}
|
||
cJSON_AddItemToObject(root, "network", network);
|
||
|
||
auto json_str = cJSON_PrintUnformatted(root);
|
||
std::string json(json_str);
|
||
cJSON_free(json_str);
|
||
cJSON_Delete(root);
|
||
return json;
|
||
}
|