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
264 lines
8.5 KiB
C++
264 lines
8.5 KiB
C++
#include "wifi_board.h"
|
|
#include "codecs/es8311_audio_codec.h"
|
|
#include "application.h"
|
|
#include "display/lcd_display.h"
|
|
// #include "display/no_display.h"
|
|
#include "button.h"
|
|
#include "config.h"
|
|
|
|
#include "esp32_camera.h"
|
|
#include "esp_video_init.h"
|
|
#include "esp_cam_sensor_xclk.h"
|
|
|
|
#include "esp_lcd_panel_ops.h"
|
|
#include "esp_lcd_mipi_dsi.h"
|
|
#include "esp_ldo_regulator.h"
|
|
|
|
#include "esp_lcd_mipi_dsi.h"
|
|
#include "esp_lcd_jd9365_10_1.h"
|
|
|
|
#include <esp_log.h>
|
|
#include <driver/i2c_master.h>
|
|
#include <esp_lvgl_port.h>
|
|
#include "esp_lcd_touch_gt911.h"
|
|
#define TAG "WaveshareEsp32p4nano"
|
|
|
|
class CustomBacklight : public Backlight {
|
|
public:
|
|
CustomBacklight(i2c_master_bus_handle_t i2c_handle)
|
|
: Backlight(), i2c_handle_(i2c_handle) {}
|
|
|
|
protected:
|
|
i2c_master_bus_handle_t i2c_handle_;
|
|
|
|
virtual void SetBrightnessImpl(uint8_t brightness) override {
|
|
uint8_t i2c_address = 0x45; // 7-bit address
|
|
#if CONFIG_LCD_TYPE_800_1280_10_1_INCH
|
|
uint8_t reg = 0x86;
|
|
#elif CONFIG_LCD_TYPE_800_1280_10_1_INCH_A
|
|
uint8_t reg = 0x96;
|
|
#endif
|
|
uint8_t data[2] = {reg, brightness};
|
|
|
|
i2c_master_dev_handle_t dev_handle;
|
|
i2c_device_config_t dev_cfg = {
|
|
.dev_addr_length = I2C_ADDR_BIT_LEN_7,
|
|
.device_address = i2c_address,
|
|
.scl_speed_hz = 100000,
|
|
};
|
|
|
|
esp_err_t err = i2c_master_bus_add_device(i2c_handle_, &dev_cfg, &dev_handle);
|
|
if (err != ESP_OK) {
|
|
ESP_LOGE(TAG, "Failed to add I2C device: %s", esp_err_to_name(err));
|
|
return;
|
|
}
|
|
|
|
err = i2c_master_transmit(dev_handle, data, sizeof(data), -1);
|
|
if (err != ESP_OK) {
|
|
ESP_LOGE(TAG, "Failed to transmit brightness: %s", esp_err_to_name(err));
|
|
} else {
|
|
ESP_LOGI(TAG, "Backlight brightness set to %u", brightness);
|
|
}
|
|
|
|
// i2c_master_bus_rm_device(dev_handle);
|
|
}
|
|
};
|
|
|
|
class WaveshareEsp32p4nano : public WifiBoard {
|
|
private:
|
|
i2c_master_bus_handle_t codec_i2c_bus_;
|
|
Button boot_button_;
|
|
LcdDisplay *display__;
|
|
Esp32Camera* camera_ = nullptr;
|
|
CustomBacklight *backlight_;
|
|
|
|
void InitializeCodecI2c() {
|
|
// Initialize I2C peripheral
|
|
i2c_master_bus_config_t i2c_bus_cfg = {
|
|
.i2c_port = I2C_NUM_1,
|
|
.sda_io_num = AUDIO_CODEC_I2C_SDA_PIN,
|
|
.scl_io_num = AUDIO_CODEC_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_cfg, &codec_i2c_bus_));
|
|
}
|
|
|
|
static esp_err_t bsp_enable_dsi_phy_power(void) {
|
|
#if MIPI_DSI_PHY_PWR_LDO_CHAN > 0
|
|
// Turn on the power for MIPI DSI PHY, so it can go from "No Power" state to "Shutdown" state
|
|
static esp_ldo_channel_handle_t phy_pwr_chan = NULL;
|
|
esp_ldo_channel_config_t ldo_cfg = {
|
|
.chan_id = MIPI_DSI_PHY_PWR_LDO_CHAN,
|
|
.voltage_mv = MIPI_DSI_PHY_PWR_LDO_VOLTAGE_MV,
|
|
};
|
|
esp_ldo_acquire_channel(&ldo_cfg, &phy_pwr_chan);
|
|
ESP_LOGI(TAG, "MIPI DSI PHY Powered on");
|
|
#endif // BSP_MIPI_DSI_PHY_PWR_LDO_CHAN > 0
|
|
|
|
return ESP_OK;
|
|
}
|
|
|
|
void InitializeLCD() {
|
|
bsp_enable_dsi_phy_power();
|
|
esp_lcd_panel_io_handle_t io = NULL;
|
|
esp_lcd_panel_handle_t disp_panel = NULL;
|
|
|
|
esp_lcd_dsi_bus_handle_t mipi_dsi_bus = NULL;
|
|
esp_lcd_dsi_bus_config_t bus_config = {
|
|
.bus_id = 0,
|
|
.num_data_lanes = 2,
|
|
.lane_bit_rate_mbps = 1500,
|
|
};
|
|
esp_lcd_new_dsi_bus(&bus_config, &mipi_dsi_bus);
|
|
|
|
ESP_LOGI(TAG, "Install MIPI DSI LCD control panel");
|
|
// we use DBI interface to send LCD commands and parameters
|
|
esp_lcd_dbi_io_config_t dbi_config = JD9365_PANEL_IO_DBI_CONFIG();
|
|
esp_lcd_new_panel_io_dbi(mipi_dsi_bus, &dbi_config, &io);
|
|
|
|
esp_lcd_dpi_panel_config_t dpi_config = {
|
|
.dpi_clk_src = MIPI_DSI_DPI_CLK_SRC_DEFAULT,
|
|
.dpi_clock_freq_mhz = 80,
|
|
.pixel_format = LCD_COLOR_PIXEL_FORMAT_RGB565,
|
|
.num_fbs = 1,
|
|
.video_timing = {
|
|
.h_size = 800,
|
|
.v_size = 1280,
|
|
.hsync_pulse_width = 20,
|
|
.hsync_back_porch = 20,
|
|
.hsync_front_porch = 40,
|
|
.vsync_pulse_width = 10,
|
|
.vsync_back_porch = 4,
|
|
.vsync_front_porch = 30,
|
|
},
|
|
.flags = {
|
|
.use_dma2d = true,
|
|
},
|
|
};
|
|
|
|
jd9365_vendor_config_t vendor_config = {
|
|
|
|
.mipi_config = {
|
|
.dsi_bus = mipi_dsi_bus,
|
|
.dpi_config = &dpi_config,
|
|
.lane_num = 2,
|
|
},
|
|
.flags = {
|
|
.use_mipi_interface = 1,
|
|
},
|
|
};
|
|
|
|
const esp_lcd_panel_dev_config_t lcd_dev_config = {
|
|
.reset_gpio_num = PIN_NUM_LCD_RST,
|
|
.rgb_ele_order = LCD_RGB_ELEMENT_ORDER_RGB,
|
|
.bits_per_pixel = 16,
|
|
.vendor_config = &vendor_config,
|
|
};
|
|
esp_lcd_new_panel_jd9365(io, &lcd_dev_config, &disp_panel);
|
|
esp_lcd_panel_reset(disp_panel);
|
|
esp_lcd_panel_init(disp_panel);
|
|
|
|
display__ = new MipiLcdDisplay(io, disp_panel, DISPLAY_WIDTH, DISPLAY_HEIGHT,
|
|
DISPLAY_OFFSET_X, DISPLAY_OFFSET_Y, DISPLAY_MIRROR_X, DISPLAY_MIRROR_Y, DISPLAY_SWAP_XY);
|
|
backlight_ = new CustomBacklight(codec_i2c_bus_);
|
|
backlight_->RestoreBrightness();
|
|
}
|
|
void InitializeTouch()
|
|
{
|
|
esp_lcd_touch_handle_t tp;
|
|
esp_lcd_touch_config_t tp_cfg = {
|
|
.x_max = DISPLAY_WIDTH,
|
|
.y_max = DISPLAY_HEIGHT,
|
|
.rst_gpio_num = GPIO_NUM_NC,
|
|
.int_gpio_num = GPIO_NUM_NC,
|
|
.levels = {
|
|
.reset = 0,
|
|
.interrupt = 0,
|
|
},
|
|
.flags = {
|
|
.swap_xy = 0,
|
|
.mirror_x = 0,
|
|
.mirror_y = 0,
|
|
},
|
|
};
|
|
esp_lcd_panel_io_handle_t tp_io_handle = NULL;
|
|
esp_lcd_panel_io_i2c_config_t tp_io_config = ESP_LCD_TOUCH_IO_I2C_GT911_CONFIG();
|
|
tp_io_config.scl_speed_hz = 100 * 1000;
|
|
ESP_ERROR_CHECK(esp_lcd_new_panel_io_i2c(codec_i2c_bus_, &tp_io_config, &tp_io_handle));
|
|
ESP_LOGI(TAG, "Initialize touch controller");
|
|
ESP_ERROR_CHECK(esp_lcd_touch_new_i2c_gt911(tp_io_handle, &tp_cfg, &tp));
|
|
const lvgl_port_touch_cfg_t touch_cfg = {
|
|
.disp = lv_display_get_default(),
|
|
.handle = tp,
|
|
};
|
|
lvgl_port_add_touch(&touch_cfg);
|
|
ESP_LOGI(TAG, "Touch panel initialized successfully");
|
|
}
|
|
void InitializeCamera() {
|
|
esp_video_init_csi_config_t base_csi_config = {
|
|
.sccb_config = {
|
|
.init_sccb = false,
|
|
.i2c_handle = codec_i2c_bus_,
|
|
.freq = 400000,
|
|
},
|
|
.reset_pin = GPIO_NUM_NC,
|
|
.pwdn_pin = GPIO_NUM_NC,
|
|
};
|
|
|
|
esp_video_init_config_t cam_config = {
|
|
.csi = &base_csi_config,
|
|
};
|
|
|
|
camera_ = new Esp32Camera(cam_config);
|
|
}
|
|
void InitializeButtons() {
|
|
boot_button_.OnClick([this]() {
|
|
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();
|
|
});
|
|
}
|
|
|
|
public:
|
|
WaveshareEsp32p4nano() :
|
|
boot_button_(BOOT_BUTTON_GPIO) {
|
|
InitializeCodecI2c();
|
|
InitializeLCD();
|
|
InitializeTouch();
|
|
InitializeCamera();
|
|
InitializeButtons();
|
|
}
|
|
|
|
virtual AudioCodec *GetAudioCodec() override {
|
|
static Es8311AudioCodec audio_codec(codec_i2c_bus_, I2C_NUM_1, AUDIO_INPUT_SAMPLE_RATE, AUDIO_OUTPUT_SAMPLE_RATE,
|
|
AUDIO_I2S_GPIO_MCLK, AUDIO_I2S_GPIO_BCLK, AUDIO_I2S_GPIO_WS, AUDIO_I2S_GPIO_DOUT, AUDIO_I2S_GPIO_DIN,
|
|
AUDIO_CODEC_PA_PIN, AUDIO_CODEC_ES8311_ADDR);
|
|
return &audio_codec;
|
|
}
|
|
|
|
virtual Display *GetDisplay() override {
|
|
return display__;
|
|
}
|
|
|
|
virtual Camera* GetCamera() override {
|
|
return camera_;
|
|
}
|
|
|
|
virtual Backlight *GetBacklight() override {
|
|
return backlight_;
|
|
}
|
|
|
|
};
|
|
|
|
DECLARE_BOARD(WaveshareEsp32p4nano);
|