From b49ad1755d68b50dfa6289637f5626d1c1a8823b Mon Sep 17 00:00:00 2001
From: Y1hsiaochunnn <66012385+Y1hsiaochunnn@users.noreply.github.com>
Date: Tue, 20 May 2025 20:59:09 +0800
Subject: [PATCH] Add board support for Waveshare ESP32-S3-Touch-AMOLED-1.75
(#643)
* Add board support for Waveshare ESP32-S3-Touch-AMOLED-1.75
* Fix component excess strings
* Fix the ui
* Update Kconfig.projbuild
Correction board for USB_DEVICE_AEC requirements
---
main/CMakeLists.txt | 2 +
main/Kconfig.projbuild | 4 +-
.../waveshare-s3-touch-amoled-1.75/README.md | 15 +
.../board_control.cc | 32 ++
.../waveshare-s3-touch-amoled-1.75/config.h | 44 +++
.../config.json | 12 +
.../esp32-s3-touch-amoled-1.75.cc | 362 ++++++++++++++++++
main/idf_component.yml | 1 +
8 files changed, 471 insertions(+), 1 deletion(-)
create mode 100644 main/boards/waveshare-s3-touch-amoled-1.75/README.md
create mode 100644 main/boards/waveshare-s3-touch-amoled-1.75/board_control.cc
create mode 100644 main/boards/waveshare-s3-touch-amoled-1.75/config.h
create mode 100644 main/boards/waveshare-s3-touch-amoled-1.75/config.json
create mode 100644 main/boards/waveshare-s3-touch-amoled-1.75/esp32-s3-touch-amoled-1.75.cc
diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt
index 65f27f40..83a114f2 100644
--- a/main/CMakeLists.txt
+++ b/main/CMakeLists.txt
@@ -97,6 +97,8 @@ elseif(CONFIG_BOARD_TYPE_ESP_SPOT_S3)
set(BOARD_TYPE "esp-spot-s3")
elseif(CONFIG_BOARD_TYPE_ESP32S3_Touch_AMOLED_1_8)
set(BOARD_TYPE "esp32-s3-touch-amoled-1.8")
+elseif(CONFIG_BOARD_TYPE_ESP32S3_Touch_AMOLED_1_75)
+ set(BOARD_TYPE "waveshare-s3-touch-amoled-1.75")
elseif(CONFIG_BOARD_TYPE_ESP32S3_Touch_LCD_1_85C)
set(BOARD_TYPE "esp32-s3-touch-lcd-1.85c")
elseif(CONFIG_BOARD_TYPE_ESP32S3_Touch_LCD_1_85)
diff --git a/main/Kconfig.projbuild b/main/Kconfig.projbuild
index 3312c5a1..459d5786 100644
--- a/main/Kconfig.projbuild
+++ b/main/Kconfig.projbuild
@@ -94,6 +94,8 @@ choice BOARD_TYPE
bool "ESP-Spot-S3"
config BOARD_TYPE_ESP32S3_Touch_AMOLED_1_8
bool "Waveshare ESP32-S3-Touch-AMOLED-1.8"
+ config BOARD_TYPE_ESP32S3_Touch_AMOLED_1_75
+ bool "Waveshare ESP32-S3-Touch-AMOLED-1.75"
config BOARD_TYPE_ESP32S3_Touch_LCD_1_85C
bool "Waveshare ESP32-S3-Touch-LCD-1.85C"
config BOARD_TYPE_ESP32S3_Touch_LCD_1_85
@@ -261,7 +263,7 @@ config USE_AUDIO_PROCESSOR
config USE_DEVICE_AEC
bool "在通话过程中启用设备端 AEC"
default n
- depends on USE_AUDIO_PROCESSOR && (BOARD_TYPE_ESP_BOX_3 || BOARD_TYPE_ESP_BOX || BOARD_TYPE_ESP_BOX_LITE || BOARD_TYPE_LICHUANG_DEV || BOARD_TYPE_ESP32S3_KORVO2_V3)
+ depends on USE_AUDIO_PROCESSOR && (BOARD_TYPE_ESP_BOX_3 || BOARD_TYPE_ESP_BOX || BOARD_TYPE_ESP_BOX_LITE || BOARD_TYPE_LICHUANG_DEV || BOARD_TYPE_ESP32S3_KORVO2_V3 || BOARD_TYPE_ESP32S3_Touch_AMOLED_1_75)
help
因为性能不够,不建议和微信聊天界面风格同时开启
diff --git a/main/boards/waveshare-s3-touch-amoled-1.75/README.md b/main/boards/waveshare-s3-touch-amoled-1.75/README.md
new file mode 100644
index 00000000..5f99392d
--- /dev/null
+++ b/main/boards/waveshare-s3-touch-amoled-1.75/README.md
@@ -0,0 +1,15 @@
+# Waveshare ESP32-S3-Touch-AMOLED-1.75
+
+
+[ESP32-S3-Touch-AMOLED-1.75](https://www.waveshare.com/esp32-s3-touch-amoled-1.75.htm) ESP32-S3-Touch-AMOLED-1.75 is a high performance, highly integrated microcontroller development board designed by Waveshare.\
+In the smaller form, the 1.75-inch capacitive HD AMOLED screen, highly integrated power management chip, six-axis sensor (three-axis accelerometer and three-axis gyroscope), RTC, low-power audio codec chip and echo cancellation circuit are mounted on the board, which is convenient for development and embedding into the product.
+
+
+## images
+
+| [ESP32-S3-Touch-AMOLED-1.75](https://www.waveshare.com/esp32-s3-touch-amoled-1.75.htm) |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+|
|
+|
|
+|
|
+
diff --git a/main/boards/waveshare-s3-touch-amoled-1.75/board_control.cc b/main/boards/waveshare-s3-touch-amoled-1.75/board_control.cc
new file mode 100644
index 00000000..96c11079
--- /dev/null
+++ b/main/boards/waveshare-s3-touch-amoled-1.75/board_control.cc
@@ -0,0 +1,32 @@
+#include
+#include
+#include
+#include
+
+#include "board.h"
+#include "boards/common/wifi_board.h"
+#include "boards/waveshare-s3-touch-amoled-1.75/config.h"
+#include "iot/thing.h"
+
+#define TAG "BoardControl"
+
+namespace iot {
+
+class BoardControl : public Thing {
+public:
+ BoardControl() : Thing("BoardControl", "当前 AI 机器人管理和控制") {
+ // 修改重新配网
+ methods_.AddMethod("ResetWifiConfiguration", "重新配网", ParameterList(),
+ [this](const ParameterList& parameters) {
+ ESP_LOGI(TAG, "ResetWifiConfiguration");
+ auto board = static_cast(&Board::GetInstance());
+ if (board && board->GetBoardType() == "wifi") {
+ board->ResetWifiConfiguration();
+ }
+ });
+ }
+};
+
+} // namespace iot
+
+DECLARE_THING(BoardControl);
diff --git a/main/boards/waveshare-s3-touch-amoled-1.75/config.h b/main/boards/waveshare-s3-touch-amoled-1.75/config.h
new file mode 100644
index 00000000..40ac5df6
--- /dev/null
+++ b/main/boards/waveshare-s3-touch-amoled-1.75/config.h
@@ -0,0 +1,44 @@
+#ifndef _BOARD_CONFIG_H_
+#define _BOARD_CONFIG_H_
+
+#include
+
+#define AUDIO_INPUT_SAMPLE_RATE 24000
+#define AUDIO_OUTPUT_SAMPLE_RATE 24000
+
+#define AUDIO_INPUT_REFERENCE true
+
+#define AUDIO_I2S_GPIO_MCLK GPIO_NUM_42
+#define AUDIO_I2S_GPIO_WS GPIO_NUM_45
+#define AUDIO_I2S_GPIO_BCLK GPIO_NUM_9
+#define AUDIO_I2S_GPIO_DIN GPIO_NUM_10
+#define AUDIO_I2S_GPIO_DOUT GPIO_NUM_8
+
+#define AUDIO_CODEC_PA_PIN GPIO_NUM_46
+#define AUDIO_CODEC_I2C_SDA_PIN GPIO_NUM_15
+#define AUDIO_CODEC_I2C_SCL_PIN GPIO_NUM_14
+#define AUDIO_CODEC_ES8311_ADDR ES8311_CODEC_DEFAULT_ADDR
+#define AUDIO_CODEC_ES7210_ADDR ES7210_CODEC_DEFAULT_ADDR
+
+#define I2C_ADDRESS ESP_IO_EXPANDER_I2C_TCA9554_ADDRESS_000
+#define BOOT_BUTTON_GPIO GPIO_NUM_0
+
+#define EXAMPLE_PIN_NUM_LCD_CS GPIO_NUM_12
+#define EXAMPLE_PIN_NUM_LCD_PCLK GPIO_NUM_38
+#define EXAMPLE_PIN_NUM_LCD_DATA0 GPIO_NUM_4
+#define EXAMPLE_PIN_NUM_LCD_DATA1 GPIO_NUM_5
+#define EXAMPLE_PIN_NUM_LCD_DATA2 GPIO_NUM_6
+#define EXAMPLE_PIN_NUM_LCD_DATA3 GPIO_NUM_7
+#define EXAMPLE_PIN_NUM_LCD_RST GPIO_NUM_39
+#define DISPLAY_WIDTH 466
+#define DISPLAY_HEIGHT 466
+#define DISPLAY_MIRROR_X false
+#define DISPLAY_MIRROR_Y false
+#define DISPLAY_SWAP_XY false
+
+#define DISPLAY_OFFSET_X 0
+#define DISPLAY_OFFSET_Y 0
+
+#define DISPLAY_BACKLIGHT_PIN GPIO_NUM_NC
+#define DISPLAY_BACKLIGHT_OUTPUT_INVERT false
+#endif // _BOARD_CONFIG_H_
diff --git a/main/boards/waveshare-s3-touch-amoled-1.75/config.json b/main/boards/waveshare-s3-touch-amoled-1.75/config.json
new file mode 100644
index 00000000..6e4e8acb
--- /dev/null
+++ b/main/boards/waveshare-s3-touch-amoled-1.75/config.json
@@ -0,0 +1,12 @@
+{
+ "target": "esp32s3",
+ "builds": [
+ {
+ "name": "waveshare-s3-touch-amoled-1.75",
+ "sdkconfig_append": [
+ "CONFIG_USE_WECHAT_MESSAGE_STYLE=n",
+ "CONFIG_USE_DEVICE_AEC=y"
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/main/boards/waveshare-s3-touch-amoled-1.75/esp32-s3-touch-amoled-1.75.cc b/main/boards/waveshare-s3-touch-amoled-1.75/esp32-s3-touch-amoled-1.75.cc
new file mode 100644
index 00000000..9631c6b0
--- /dev/null
+++ b/main/boards/waveshare-s3-touch-amoled-1.75/esp32-s3-touch-amoled-1.75.cc
@@ -0,0 +1,362 @@
+#include "wifi_board.h"
+#include "display/lcd_display.h"
+#include "esp_lcd_sh8601.h"
+#include "font_awesome_symbols.h"
+
+#include "audio_codecs/box_audio_codec.h"
+#include "application.h"
+#include "button.h"
+#include "led/single_led.h"
+#include "iot/thing_manager.h"
+#include "config.h"
+#include "power_save_timer.h"
+#include "axp2101.h"
+#include "i2c_device.h"
+#include
+
+#include
+#include
+#include
+#include
+#include "esp_io_expander_tca9554.h"
+#include "settings.h"
+
+#include
+#include
+#include
+
+#define TAG "WaveshareEsp32s3TouchAMOLED1inch75"
+
+LV_FONT_DECLARE(font_puhui_30_4);
+LV_FONT_DECLARE(font_awesome_30_4);
+
+class Pmic : public Axp2101 {
+public:
+ Pmic(i2c_master_bus_handle_t i2c_bus, uint8_t addr) : Axp2101(i2c_bus, addr) {
+ WriteReg(0x22, 0b110); // PWRON > OFFLEVEL as POWEROFF Source enable
+ WriteReg(0x27, 0x10); // hold 4s to power off
+
+ // Disable All DCs but DC1
+ WriteReg(0x80, 0x01);
+ // Disable All LDOs
+ WriteReg(0x90, 0x00);
+ WriteReg(0x91, 0x00);
+
+ // Set DC1 to 3.3V
+ WriteReg(0x82, (3300 - 1500) / 100);
+
+ // Set ALDO1 to 3.3V
+ WriteReg(0x92, (3300 - 500) / 100);
+
+ // Enable ALDO1(MIC)
+ WriteReg(0x90, 0x01);
+
+ WriteReg(0x64, 0x02); // CV charger voltage setting to 4.1V
+
+ WriteReg(0x61, 0x02); // set Main battery precharge current to 50mA
+ WriteReg(0x62, 0x08); // set Main battery charger current to 400mA ( 0x08-200mA, 0x09-300mA, 0x0A-400mA )
+ WriteReg(0x63, 0x01); // set Main battery term charge current to 25mA
+ }
+};
+
+#define LCD_OPCODE_WRITE_CMD (0x02ULL)
+#define LCD_OPCODE_READ_CMD (0x03ULL)
+#define LCD_OPCODE_WRITE_COLOR (0x32ULL)
+
+static const sh8601_lcd_init_cmd_t vendor_specific_init[] = {
+ {0xFE, (uint8_t[]){0x00}, 1, 0},
+ {0xC4, (uint8_t[]){0x80}, 1, 0},
+ {0x3A, (uint8_t[]){0x55}, 1, 0},
+ {0x35, (uint8_t[]){0x00}, 1, 0},
+ {0x53, (uint8_t[]){0x20}, 1, 0},
+ {0x51, (uint8_t[]){0xFF}, 1, 0},
+ {0x63, (uint8_t[]){0xFF}, 1, 0},
+ {0x2A, (uint8_t[]){0x00, 0x06, 0x01, 0xD7}, 4, 0},
+ {0x2B, (uint8_t[]){0x00, 0x00, 0x01, 0xD1}, 4, 600},
+ {0x11, NULL, 0, 600},
+ {0x29, NULL, 0, 0},
+};
+
+// 在waveshare_amoled_1_75类之前添加新的显示类
+class CustomLcdDisplay : public SpiLcdDisplay {
+public:
+ static void rounder_event_cb(lv_event_t* e) {
+ lv_area_t* area = (lv_area_t* )lv_event_get_param(e);
+ uint16_t x1 = area->x1;
+ uint16_t x2 = area->x2;
+
+ uint16_t y1 = area->y1;
+ uint16_t y2 = area->y2;
+
+ // round the start of coordinate down to the nearest 2M number
+ area->x1 = (x1 >> 1) << 1;
+ area->y1 = (y1 >> 1) << 1;
+ // round the end of coordinate up to the nearest 2N+1 number
+ area->x2 = ((x2 >> 1) << 1) + 1;
+ area->y2 = ((y2 >> 1) << 1) + 1;
+ }
+
+ CustomLcdDisplay(esp_lcd_panel_io_handle_t io_handle,
+ esp_lcd_panel_handle_t panel_handle,
+ int width,
+ int height,
+ int offset_x,
+ int offset_y,
+ bool mirror_x,
+ bool mirror_y,
+ bool swap_xy)
+ : SpiLcdDisplay(io_handle, panel_handle,
+ width, height, offset_x, offset_y, mirror_x, mirror_y, swap_xy,
+ {
+ .text_font = &font_puhui_30_4,
+ .icon_font = &font_awesome_30_4,
+#if CONFIG_USE_WECHAT_MESSAGE_STYLE
+ .emoji_font = font_emoji_32_init(),
+#else
+ .emoji_font = font_emoji_64_init(),
+#endif
+ })
+ {
+ DisplayLockGuard lock(this);
+ lv_obj_set_style_pad_left(status_bar_, LV_HOR_RES* 0.1, 0);
+ lv_obj_set_style_pad_right(status_bar_, LV_HOR_RES* 0.1, 0);
+ lv_display_add_event_cb(display_, rounder_event_cb, LV_EVENT_INVALIDATE_AREA, NULL);
+ }
+};
+
+class CustomBacklight : public Backlight {
+public:
+ CustomBacklight(esp_lcd_panel_io_handle_t panel_io) : Backlight(), panel_io_(panel_io) {}
+
+protected:
+ esp_lcd_panel_io_handle_t panel_io_;
+
+ virtual void SetBrightnessImpl(uint8_t brightness) override {
+ auto display = Board::GetInstance().GetDisplay();
+ DisplayLockGuard lock(display);
+ uint8_t data[1] = {((uint8_t)((255* brightness) / 100))};
+ int lcd_cmd = 0x51;
+ lcd_cmd &= 0xff;
+ lcd_cmd <<= 8;
+ lcd_cmd |= LCD_OPCODE_WRITE_CMD << 24;
+ esp_lcd_panel_io_tx_param(panel_io_, lcd_cmd, &data, sizeof(data));
+ }
+};
+
+class WaveshareEsp32s3TouchAMOLED1inch75 : public WifiBoard {
+private:
+ i2c_master_bus_handle_t i2c_bus_;
+ Pmic* pmic_ = nullptr;
+ Button boot_button_;
+ CustomLcdDisplay* display_;
+ CustomBacklight* backlight_;
+ esp_io_expander_handle_t io_expander = NULL;
+ PowerSaveTimer* power_save_timer_;
+
+ void InitializePowerSaveTimer() {
+ power_save_timer_ = new PowerSaveTimer(-1, 60, 300);
+ power_save_timer_->OnEnterSleepMode([this]() {
+ ESP_LOGI(TAG, "Enabling sleep mode");
+ auto display = GetDisplay();
+ display->SetChatMessage("system", "");
+ display->SetEmotion("sleepy");
+ GetBacklight()->SetBrightness(20); });
+ power_save_timer_->OnExitSleepMode([this]() {
+ auto display = GetDisplay();
+ display->SetChatMessage("system", "");
+ display->SetEmotion("neutral");
+ GetBacklight()->RestoreBrightness(); });
+ power_save_timer_->OnShutdownRequest([this](){
+ pmic_->PowerOff(); });
+ power_save_timer_->SetEnabled(true);
+ }
+
+ void InitializeCodecI2c() {
+ // Initialize I2C peripheral
+ i2c_master_bus_config_t i2c_bus_cfg = {
+ .i2c_port = I2C_NUM_0,
+ .sda_io_num = AUDIO_CODEC_I2C_SDA_PIN,
+ .scl_io_num = AUDIO_CODEC_I2C_SCL_PIN,
+ .clk_source = I2C_CLK_SRC_DEFAULT,
+ .flags = {
+ .enable_internal_pullup = 1,
+ },
+ };
+ ESP_ERROR_CHECK(i2c_new_master_bus(&i2c_bus_cfg, &i2c_bus_));
+ }
+
+ void InitializeTca9554(void) {
+ esp_err_t ret = esp_io_expander_new_i2c_tca9554(i2c_bus_, I2C_ADDRESS, &io_expander);
+ if (ret != ESP_OK)
+ ESP_LOGE(TAG, "TCA9554 create returned error");
+ ret = esp_io_expander_set_dir(io_expander, IO_EXPANDER_PIN_NUM_4, IO_EXPANDER_INPUT);
+ ESP_ERROR_CHECK(ret);
+ }
+
+ void InitializeAxp2101() {
+ ESP_LOGI(TAG, "Init AXP2101");
+ pmic_ = new Pmic(i2c_bus_, 0x34);
+ }
+
+ void InitializeSpi() {
+ spi_bus_config_t buscfg = {};
+ buscfg.sclk_io_num = EXAMPLE_PIN_NUM_LCD_PCLK;
+ buscfg.data0_io_num = EXAMPLE_PIN_NUM_LCD_DATA0;
+ buscfg.data1_io_num = EXAMPLE_PIN_NUM_LCD_DATA1;
+ buscfg.data2_io_num = EXAMPLE_PIN_NUM_LCD_DATA2;
+ buscfg.data3_io_num = EXAMPLE_PIN_NUM_LCD_DATA3;
+ buscfg.max_transfer_sz = DISPLAY_WIDTH* DISPLAY_HEIGHT* sizeof(uint16_t);
+ buscfg.flags = SPICOMMON_BUSFLAG_QUAD;
+ ESP_ERROR_CHECK(spi_bus_initialize(SPI2_HOST, &buscfg, SPI_DMA_CH_AUTO));
+ }
+
+ void InitializeButtons() {
+ boot_button_.OnClick([this]() {
+ auto& app = Application::GetInstance();
+ if (app.GetDeviceState() == kDeviceStateStarting && !WifiStation::GetInstance().IsConnected()) {
+ ResetWifiConfiguration();
+ }
+ app.ToggleChatState(); });
+ }
+
+ void InitializeSH8601Display() {
+ 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 = SH8601_PANEL_IO_QSPI_CONFIG(
+ EXAMPLE_PIN_NUM_LCD_CS,
+ nullptr,
+ nullptr);
+ ESP_ERROR_CHECK(esp_lcd_new_panel_io_spi(SPI2_HOST, &io_config, &panel_io));
+
+ // 初始化液晶屏驱动芯片
+ ESP_LOGD(TAG, "Install LCD driver");
+ const sh8601_vendor_config_t vendor_config = {
+ .init_cmds = &vendor_specific_init[0],
+ .init_cmds_size = sizeof(vendor_specific_init) / sizeof(sh8601_lcd_init_cmd_t),
+ .flags = {
+ .use_qspi_interface = 1,
+ }};
+
+ esp_lcd_panel_dev_config_t panel_config = {};
+ panel_config.reset_gpio_num = EXAMPLE_PIN_NUM_LCD_RST;
+ panel_config.rgb_ele_order = LCD_RGB_ELEMENT_ORDER_RGB;
+ panel_config.bits_per_pixel = 16;
+ panel_config.vendor_config = (void* )&vendor_config;
+ ESP_ERROR_CHECK(esp_lcd_new_panel_sh8601(panel_io, &panel_config, &panel));
+ esp_lcd_panel_set_gap(panel, 0x06, 0);
+ esp_lcd_panel_reset(panel);
+ esp_lcd_panel_init(panel);
+ esp_lcd_panel_invert_color(panel, false);
+ esp_lcd_panel_mirror(panel, DISPLAY_MIRROR_X, DISPLAY_MIRROR_Y);
+ esp_lcd_panel_disp_on_off(panel, true);
+ display_ = new CustomLcdDisplay(panel_io, panel,
+ DISPLAY_WIDTH, DISPLAY_HEIGHT, DISPLAY_OFFSET_X, DISPLAY_OFFSET_Y, DISPLAY_MIRROR_X, DISPLAY_MIRROR_Y, DISPLAY_SWAP_XY);
+ backlight_ = new CustomBacklight(panel_io);
+ backlight_->RestoreBrightness();
+ }
+
+ void InitializeTouch() {
+ esp_lcd_touch_handle_t tp;
+ esp_lcd_touch_config_t tp_cfg = {
+ .x_max = DISPLAY_WIDTH - 1,
+ .y_max = DISPLAY_HEIGHT - 1,
+ .rst_gpio_num = GPIO_NUM_40,
+ .int_gpio_num = GPIO_NUM_NC,
+ .levels = {
+ .reset = 0,
+ .interrupt = 0,
+ },
+ .flags = {
+ .swap_xy = 0,
+ .mirror_x = 1,
+ .mirror_y = 1,
+ },
+ };
+ 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_CST9217_CONFIG();
+ tp_io_config.scl_speed_hz = 400* 1000;
+ ESP_ERROR_CHECK(esp_lcd_new_panel_io_i2c(i2c_bus_, &tp_io_config, &tp_io_handle));
+ ESP_LOGI(TAG, "Initialize touch controller");
+ ESP_ERROR_CHECK(esp_lcd_touch_new_i2c_cst9217(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");
+ }
+
+ // 物联网初始化,添加对 AI 可见设备
+ void InitializeIot() {
+ auto &thing_manager = iot::ThingManager::GetInstance();
+ thing_manager.AddThing(iot::CreateThing("Speaker"));
+ thing_manager.AddThing(iot::CreateThing("Screen"));
+ thing_manager.AddThing(iot::CreateThing("Battery"));
+ thing_manager.AddThing(iot::CreateThing("BoardControl"));
+ }
+
+public:
+ WaveshareEsp32s3TouchAMOLED1inch75() : boot_button_(BOOT_BUTTON_GPIO) {
+ InitializePowerSaveTimer();
+ InitializeCodecI2c();
+ InitializeTca9554();
+ InitializeAxp2101();
+ InitializeSpi();
+ InitializeSH8601Display();
+ InitializeTouch();
+ InitializeButtons();
+ InitializeIot();
+ }
+
+ virtual AudioCodec* GetAudioCodec() override {
+ static BoxAudioCodec audio_codec(
+ i2c_bus_,
+ 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,
+ AUDIO_CODEC_ES7210_ADDR,
+ AUDIO_INPUT_REFERENCE);
+ return &audio_codec;
+ }
+
+ virtual Display* GetDisplay() override {
+ return display_;
+ }
+
+ virtual Backlight* GetBacklight() override {
+ return backlight_;
+ }
+
+ virtual bool GetBatteryLevel(int &level, bool &charging, bool &discharging) override {
+ static bool last_discharging = false;
+ charging = pmic_->IsCharging();
+ discharging = pmic_->IsDischarging();
+ if (discharging != last_discharging)
+ {
+ power_save_timer_->SetEnabled(discharging);
+ last_discharging = discharging;
+ }
+
+ level = pmic_->GetBatteryLevel();
+ return true;
+ }
+
+ virtual void SetPowerSaveMode(bool enabled) override {
+ if (!enabled)
+ {
+ power_save_timer_->WakeUp();
+ }
+ WifiBoard::SetPowerSaveMode(enabled);
+ }
+};
+
+DECLARE_BOARD(WaveshareEsp32s3TouchAMOLED1inch75);
diff --git a/main/idf_component.yml b/main/idf_component.yml
index bac0cb3f..15aa30b3 100644
--- a/main/idf_component.yml
+++ b/main/idf_component.yml
@@ -20,6 +20,7 @@ dependencies:
espressif/knob: ^1.0.0
espressif/esp_lcd_touch_ft5x06: ~1.0.7
espressif/esp_lcd_touch_gt911: ^1
+ waveshare/esp_lcd_touch_cst9217: ^1.0.2
lvgl/lvgl: ~9.2.2
esp_lvgl_port: ~2.6.0
espressif/esp_io_expander_tca95xx_16bit: ^2.0.0