mirror of
https://github.com/78/xiaozhi-esp32.git
synced 2026-01-13 16:57:17 +08:00
* Upgrade component version * update fonts component version * Handle OTA error code * Update project version to 2.1.0 and add device state machine implementation - Upgrade esp-wifi-connect to 3.0.0, allowing reconfiguring wifi without rebooting - Introduce device state machine with state change notification in new files - Remove obsolete device state event files - Update application logic to utilize new state machine - Minor adjustments in various board implementations for state handling * fix compile errors * Refactor power saving mode implementation to use PowerSaveLevel enumeration - Updated Application class to replace SetPowerSaveMode with SetPowerSaveLevel, allowing for LOW_POWER and PERFORMANCE settings. - Modified various board implementations to align with the new power save level structure. - Ensured consistent handling of power save levels across different board files, enhancing code maintainability and clarity. * Refactor power save level checks across multiple board implementations - Updated the condition for power save level checks in various board files to ensure that the power save timer only wakes up when the level is not set to LOW_POWER. - Improved consistency in handling power save levels, enhancing code clarity and maintainability. * Refactor EnterWifiConfigMode calls in board implementations - Updated calls to EnterWifiConfigMode to use the appropriate instance reference (self or board) across multiple board files. - Improved code consistency and clarity in handling device state during WiFi configuration mode entry. * Add cellular modem event handling and improve network status updates - Introduced new network events for cellular modem operations, including detecting, registration errors, and timeouts. - Enhanced the Application class to handle different network states and update the display status accordingly. - Refactored Ml307Board to implement a callback mechanism for network events, improving modularity and responsiveness. - Updated dual_network_board and board headers to support new network event callbacks, ensuring consistent handling across board implementations. * update esp-wifi-connect version * Update WiFi configuration tool messages across multiple board implementations to clarify user actions
351 lines
11 KiB
C++
351 lines
11 KiB
C++
#include "wifi_board.h"
|
|
#include "tcamerapluss3_audio_codec.h"
|
|
#include "display/lcd_display.h"
|
|
#include "application.h"
|
|
#include "button.h"
|
|
#include "config.h"
|
|
#include "power_save_timer.h"
|
|
#include "i2c_device.h"
|
|
#include "sy6970.h"
|
|
#include "pin_config.h"
|
|
#include "esp32_camera.h"
|
|
#include "ir_filter_controller.h"
|
|
|
|
#include <esp_log.h>
|
|
#include <esp_lcd_panel_vendor.h>
|
|
#include <driver/i2c_master.h>
|
|
|
|
#define TAG "LilygoTCameraPlusS3Board"
|
|
|
|
class Cst816x : public I2cDevice {
|
|
public:
|
|
struct TouchPoint_t {
|
|
int num = 0;
|
|
int x = -1;
|
|
int y = -1;
|
|
};
|
|
|
|
Cst816x(i2c_master_bus_handle_t i2c_bus, uint8_t addr) : I2cDevice(i2c_bus, addr) {
|
|
uint8_t chip_id = ReadReg(0xA7);
|
|
ESP_LOGI(TAG, "Get chip ID: 0x%02X", chip_id);
|
|
read_buffer_ = new uint8_t[6];
|
|
}
|
|
|
|
~Cst816x() {
|
|
delete[] read_buffer_;
|
|
}
|
|
|
|
void UpdateTouchPoint() {
|
|
ReadRegs(0x02, read_buffer_, 6);
|
|
tp_.num = read_buffer_[0] & 0x0F;
|
|
tp_.x = ((read_buffer_[1] & 0x0F) << 8) | read_buffer_[2];
|
|
tp_.y = ((read_buffer_[3] & 0x0F) << 8) | read_buffer_[4];
|
|
}
|
|
|
|
const TouchPoint_t &GetTouchPoint() {
|
|
return tp_;
|
|
}
|
|
|
|
private:
|
|
uint8_t *read_buffer_ = nullptr;
|
|
TouchPoint_t tp_;
|
|
};
|
|
|
|
class Pmic : public Sy6970 {
|
|
public:
|
|
|
|
Pmic(i2c_master_bus_handle_t i2c_bus, uint8_t addr) : Sy6970(i2c_bus, addr) {
|
|
uint8_t chip_id = ReadReg(0x14);
|
|
ESP_LOGI(TAG, "Get sy6970 chip ID: 0x%02X", (chip_id & 0B00111000));
|
|
|
|
WriteReg(0x00, 0B00001000); // Disable ILIM pin
|
|
WriteReg(0x02, 0B11011101); // Enable ADC measurement function
|
|
WriteReg(0x07, 0B10001101); // Disable watchdog timer feeding function
|
|
}
|
|
};
|
|
|
|
class LilygoTCameraPlusS3Board : public WifiBoard {
|
|
private:
|
|
i2c_master_bus_handle_t i2c_bus_;
|
|
Cst816x *cst816d_;
|
|
Pmic* pmic_;
|
|
LcdDisplay *display_;
|
|
Button boot_button_;
|
|
Button key1_button_;
|
|
PowerSaveTimer* power_save_timer_;
|
|
Esp32Camera* camera_;
|
|
|
|
void InitializePowerSaveTimer() {
|
|
power_save_timer_ = new PowerSaveTimer(-1, 60, -1);
|
|
power_save_timer_->OnEnterSleepMode([this]() {
|
|
GetDisplay()->SetPowerSaveMode(true);
|
|
GetBacklight()->SetBrightness(10);
|
|
});
|
|
power_save_timer_->OnExitSleepMode([this]() {
|
|
GetDisplay()->SetPowerSaveMode(false);
|
|
GetBacklight()->RestoreBrightness();
|
|
});
|
|
power_save_timer_->OnShutdownRequest([this]() {
|
|
pmic_->PowerOff();
|
|
});
|
|
power_save_timer_->SetEnabled(true);
|
|
}
|
|
|
|
void InitI2c(){
|
|
// Initialize I2C peripheral
|
|
i2c_master_bus_config_t i2c_bus_config = {
|
|
.i2c_port = I2C_NUM_0,
|
|
.sda_io_num = TOUCH_I2C_SDA_PIN,
|
|
.scl_io_num = TOUCH_I2C_SCL_PIN,
|
|
.clk_source = I2C_CLK_SRC_DEFAULT,
|
|
.glitch_ignore_cnt = 7,
|
|
.intr_priority = 0,
|
|
.trans_queue_depth = 0,
|
|
.flags = {
|
|
.enable_internal_pullup = 1,
|
|
}
|
|
};
|
|
ESP_ERROR_CHECK(i2c_new_master_bus(&i2c_bus_config, &i2c_bus_));
|
|
}
|
|
|
|
void I2cDetect() {
|
|
uint8_t address;
|
|
printf(" 0 1 2 3 4 5 6 7 8 9 a b c d e f\r\n");
|
|
for (int i = 0; i < 128; i += 16) {
|
|
printf("%02x: ", i);
|
|
for (int j = 0; j < 16; j++) {
|
|
fflush(stdout);
|
|
address = i + j;
|
|
esp_err_t ret = i2c_master_probe(i2c_bus_, address, pdMS_TO_TICKS(200));
|
|
if (ret == ESP_OK) {
|
|
printf("%02x ", address);
|
|
} else if (ret == ESP_ERR_TIMEOUT) {
|
|
printf("UU ");
|
|
} else {
|
|
printf("-- ");
|
|
}
|
|
}
|
|
printf("\r\n");
|
|
}
|
|
}
|
|
|
|
static void TouchpadDaemon(void *param) {
|
|
vTaskDelay(pdMS_TO_TICKS(2000));
|
|
auto &board = (LilygoTCameraPlusS3Board&)Board::GetInstance();
|
|
auto touchpad = board.GetTouchpad();
|
|
bool was_touched = false;
|
|
while (1) {
|
|
touchpad->UpdateTouchPoint();
|
|
if (touchpad->GetTouchPoint().num > 0){
|
|
// On press
|
|
if (!was_touched) {
|
|
was_touched = true;
|
|
Application::GetInstance().ToggleChatState();
|
|
}
|
|
}
|
|
// On release
|
|
else if (was_touched) {
|
|
was_touched = false;
|
|
}
|
|
vTaskDelay(pdMS_TO_TICKS(50));
|
|
}
|
|
vTaskDelete(NULL);
|
|
}
|
|
|
|
void InitCst816d() {
|
|
ESP_LOGI(TAG, "Init CST816x");
|
|
cst816d_ = new Cst816x(i2c_bus_, CST816_ADDRESS);
|
|
xTaskCreate(TouchpadDaemon, "tp", 2048, NULL, 5, NULL);
|
|
}
|
|
|
|
void InitSpi() {
|
|
spi_bus_config_t buscfg = {};
|
|
buscfg.mosi_io_num = DISPLAY_MOSI;
|
|
buscfg.miso_io_num = GPIO_NUM_NC;
|
|
buscfg.sclk_io_num = DISPLAY_SCLK;
|
|
buscfg.quadwp_io_num = GPIO_NUM_NC;
|
|
buscfg.quadhd_io_num = GPIO_NUM_NC;
|
|
buscfg.max_transfer_sz = DISPLAY_WIDTH * DISPLAY_HEIGHT * sizeof(uint16_t);
|
|
ESP_ERROR_CHECK(spi_bus_initialize(SPI3_HOST, &buscfg, SPI_DMA_CH_AUTO));
|
|
}
|
|
|
|
void InitSy6970() {
|
|
ESP_LOGI(TAG, "Init Sy6970");
|
|
pmic_ = new Pmic(i2c_bus_, SY6970_ADDRESS);
|
|
}
|
|
|
|
void InitializeSt7789Display() {
|
|
esp_lcd_panel_io_handle_t panel_io = nullptr;
|
|
esp_lcd_panel_handle_t panel = nullptr;
|
|
// 液晶屏控制IO初始化
|
|
ESP_LOGD(TAG, "Install panel IO");
|
|
esp_lcd_panel_io_spi_config_t io_config = {};
|
|
io_config.cs_gpio_num = LCD_CS;
|
|
io_config.dc_gpio_num = LCD_DC;
|
|
io_config.spi_mode = 0;
|
|
io_config.pclk_hz = 60 * 1000 * 1000;
|
|
io_config.trans_queue_depth = 10;
|
|
io_config.lcd_cmd_bits = 8;
|
|
io_config.lcd_param_bits = 8;
|
|
ESP_ERROR_CHECK(esp_lcd_new_panel_io_spi(SPI3_HOST, &io_config, &panel_io));
|
|
|
|
// 初始化液晶屏驱动芯片ST7789
|
|
ESP_LOGD(TAG, "Install LCD driver");
|
|
esp_lcd_panel_dev_config_t panel_config = {};
|
|
panel_config.reset_gpio_num = LCD_RST;
|
|
panel_config.rgb_ele_order = LCD_RGB_ELEMENT_ORDER_RGB;
|
|
panel_config.bits_per_pixel = 16;
|
|
ESP_ERROR_CHECK(esp_lcd_new_panel_st7789(panel_io, &panel_config, &panel));
|
|
ESP_ERROR_CHECK(esp_lcd_panel_reset(panel));
|
|
ESP_ERROR_CHECK(esp_lcd_panel_init(panel));
|
|
ESP_ERROR_CHECK(esp_lcd_panel_swap_xy(panel, DISPLAY_SWAP_XY));
|
|
ESP_ERROR_CHECK(esp_lcd_panel_mirror(panel, DISPLAY_MIRROR_X, DISPLAY_MIRROR_Y));
|
|
ESP_ERROR_CHECK(esp_lcd_panel_invert_color(panel, true));
|
|
|
|
display_ = new SpiLcdDisplay(panel_io, panel,
|
|
DISPLAY_WIDTH, DISPLAY_HEIGHT, DISPLAY_OFFSET_X, DISPLAY_OFFSET_Y, DISPLAY_MIRROR_X, DISPLAY_MIRROR_Y, DISPLAY_SWAP_XY);
|
|
}
|
|
|
|
void InitializeButtons() {
|
|
boot_button_.OnClick([this]() {
|
|
power_save_timer_->WakeUp();
|
|
auto& app = Application::GetInstance();
|
|
// During startup (before connected), pressing BOOT button enters Wi-Fi config mode without reboot
|
|
if (app.GetDeviceState() == kDeviceStateStarting) {
|
|
EnterWifiConfigMode();
|
|
return;
|
|
}
|
|
app.ToggleChatState();
|
|
});
|
|
key1_button_.OnClick([this]() {
|
|
if (camera_) {
|
|
camera_->Capture();
|
|
}
|
|
});
|
|
}
|
|
|
|
void InitializeCamera() {
|
|
static esp_cam_ctlr_dvp_pin_config_t dvp_pin_config = {
|
|
.data_width = CAM_CTLR_DATA_WIDTH_8,
|
|
.data_io = {
|
|
[0] = Y2_GPIO_NUM,
|
|
[1] = Y3_GPIO_NUM,
|
|
[2] = Y4_GPIO_NUM,
|
|
[3] = Y5_GPIO_NUM,
|
|
[4] = Y6_GPIO_NUM,
|
|
[5] = Y7_GPIO_NUM,
|
|
[6] = Y8_GPIO_NUM,
|
|
[7] = Y9_GPIO_NUM,
|
|
},
|
|
.vsync_io = VSYNC_GPIO_NUM,
|
|
.de_io = HREF_GPIO_NUM,
|
|
.pclk_io = PCLK_GPIO_NUM,
|
|
.xclk_io = XCLK_GPIO_NUM,
|
|
};
|
|
|
|
esp_video_init_sccb_config_t sccb_config = {
|
|
#ifdef CONFIG_BOARD_TYPE_LILYGO_T_CAMERAPLUS_S3_V1_0_V1_1
|
|
.init_sccb = false,
|
|
.i2c_handle = i2c_bus_,
|
|
#elif defined CONFIG_BOARD_TYPE_LILYGO_T_CAMERAPLUS_S3_V1_2
|
|
.init_sccb = true,
|
|
.i2c_config = {
|
|
.port = 1,
|
|
.scl_pin = SIOC_GPIO_NUM,
|
|
.sda_pin = SIOD_GPIO_NUM,
|
|
},
|
|
#endif
|
|
.freq = 100000,
|
|
};
|
|
|
|
esp_video_init_dvp_config_t dvp_config = {
|
|
.sccb_config = sccb_config,
|
|
.reset_pin = RESET_GPIO_NUM,
|
|
.pwdn_pin = PWDN_GPIO_NUM,
|
|
.dvp_pin = dvp_pin_config,
|
|
.xclk_freq = XCLK_FREQ_HZ,
|
|
};
|
|
|
|
esp_video_init_config_t video_config = {
|
|
.dvp = &dvp_config,
|
|
};
|
|
|
|
camera_ = new Esp32Camera(video_config);
|
|
camera_->SetVFlip(1);
|
|
camera_->SetHMirror(1);
|
|
}
|
|
|
|
void InitializeTools() {
|
|
static IrFilterController irFilter(AP1511B_GPIO);
|
|
}
|
|
|
|
public:
|
|
LilygoTCameraPlusS3Board() : boot_button_(BOOT_BUTTON_GPIO), key1_button_(KEY1_BUTTON_GPIO) {
|
|
InitializePowerSaveTimer();
|
|
InitI2c();
|
|
InitSy6970();
|
|
InitCst816d();
|
|
I2cDetect();
|
|
InitSpi();
|
|
InitializeSt7789Display();
|
|
InitializeButtons();
|
|
InitializeCamera();
|
|
InitializeTools();
|
|
GetBacklight()->RestoreBrightness();
|
|
}
|
|
|
|
virtual AudioCodec *GetAudioCodec() override {
|
|
static Tcamerapluss3AudioCodec audio_codec(
|
|
AUDIO_INPUT_SAMPLE_RATE,
|
|
AUDIO_OUTPUT_SAMPLE_RATE,
|
|
AUDIO_MIC_I2S_GPIO_BCLK,
|
|
AUDIO_MIC_I2S_GPIO_WS,
|
|
AUDIO_MIC_I2S_GPIO_DATA,
|
|
AUDIO_SPKR_I2S_GPIO_BCLK,
|
|
AUDIO_SPKR_I2S_GPIO_LRCLK,
|
|
AUDIO_SPKR_I2S_GPIO_DATA,
|
|
AUDIO_INPUT_REFERENCE);
|
|
return &audio_codec;
|
|
}
|
|
|
|
virtual Display *GetDisplay() override{
|
|
return display_;
|
|
}
|
|
|
|
virtual bool GetBatteryLevel(int &level, bool& charging, bool& discharging) override {
|
|
static bool last_discharging = false;
|
|
charging = pmic_->IsCharging();
|
|
bool is_power_good = pmic_->IsPowerGood();
|
|
discharging = !charging && is_power_good;
|
|
if (discharging != last_discharging) {
|
|
power_save_timer_->SetEnabled(discharging);
|
|
last_discharging = discharging;
|
|
}
|
|
|
|
level = pmic_->GetBatteryLevel();
|
|
return true;
|
|
}
|
|
|
|
virtual void SetPowerSaveLevel(PowerSaveLevel level) override {
|
|
if (level != PowerSaveLevel::LOW_POWER) {
|
|
power_save_timer_->WakeUp();
|
|
}
|
|
WifiBoard::SetPowerSaveLevel(level);
|
|
}
|
|
|
|
virtual Backlight* GetBacklight() override {
|
|
static PwmBacklight backlight(DISPLAY_BACKLIGHT_PIN, DISPLAY_BACKLIGHT_OUTPUT_INVERT);
|
|
return &backlight;
|
|
}
|
|
|
|
Cst816x *GetTouchpad() {
|
|
return cst816d_;
|
|
}
|
|
|
|
virtual Camera* GetCamera() override {
|
|
return camera_;
|
|
}
|
|
};
|
|
|
|
DECLARE_BOARD(LilygoTCameraPlusS3Board);
|