Fix LilyGo-T-CameraPlus-S3 Camera (#1295)

* 修改摄像头配置

* Fix lilygo-t-cameraplus-s3 camera

---------

Co-authored-by: yusuhua <yusuhua@baidu.com>
This commit is contained in:
yusuhua
2025-10-15 15:48:41 +08:00
committed by GitHub
parent c62ab7b239
commit 92238612b6
5 changed files with 53 additions and 32 deletions

View File

@@ -1,33 +1,47 @@
# 编译配置命令
## LILYGO T-CameraPlus-S3
**配置编译目标为 ESP32S3**
T-CameraPlus-S3 is an intelligent camera module developed based on the ESP32S3 chip, equipped with a 240x240 TFT display, digital microphone, speaker, independent button, power control chip, SD card module, etc. It comes with a basic UI written based on LVGL, which can achieve functions such as file management, music playback, recording, and camera projection (if the factory does not write the program, you need to manually burn the UI program named "Lvgl_UI").
Official github: [T-CameraPlus-S3](https://github.com/Xinyuan-LilyGO/T-CameraPlus-S3)
## Configuration
**Set the compilation target to ESP32S3**
```bash
idf.py set-target esp32s3
```
**打开 menuconfig**
**Open menuconfig**
```bash
idf.py menuconfig
```
**选择板子:**
**Select the board**
```
Xiaozhi Assistant -> Board Type -> LILYGO T-CameraPlus-S3_V1_0_V1_1或LILYGO T-CameraPlus-S3_V1_2
Xiaozhi Assistant -> Board Type -> LILYGO T-CameraPlus-S3_V1_0_V1_1
Or
Xiaozhi Assistant -> Board Type -> LILYGO T-CameraPlus-S3_V1_2
```
**修改 psram 配置:**
**Modify the psram configuration**
```
Component config -> ESP PSRAM -> SPI RAM config -> Mode (QUAD/OCT) -> Quad Mode PSRAM
```
**编译:**
**Select and set camera sensor**
```
Component config -> Espressif Camera Sensors Configurations -> Camera Sensor Configuration -> Select and Set Camera Sensor -> OV2640 -> Select default output format for DVP interface -> YUV422 240x240 25fps, DVP 8-bit, 20M input
```
**Build**
```bash
idf.py build
```
<a href="https://github.com/Xinyuan-LilyGO/T-CameraPlus-S3" target="_blank" title="LILYGO T-CameraPlus-S3">LILYGO T-CameraPlus-S3</a>
```