atk_dnesp32s3.cc 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. #include "wifi_board.h"
  2. #include "codecs/es8388_audio_codec.h"
  3. #include "display/lcd_display.h"
  4. #include "application.h"
  5. #include "button.h"
  6. #include "config.h"
  7. #include "i2c_device.h"
  8. #include "led/single_led.h"
  9. #include "esp32_camera.h"
  10. #include <esp_log.h>
  11. #include <esp_lcd_panel_vendor.h>
  12. #include <driver/i2c_master.h>
  13. #include <driver/spi_common.h>
  14. #include <wifi_station.h>
  15. #define TAG "atk_dnesp32s3"
  16. LV_FONT_DECLARE(font_puhui_20_4);
  17. LV_FONT_DECLARE(font_awesome_20_4);
  18. class XL9555 : public I2cDevice {
  19. public:
  20. XL9555(i2c_master_bus_handle_t i2c_bus, uint8_t addr) : I2cDevice(i2c_bus, addr) {
  21. WriteReg(0x06, 0x03);
  22. WriteReg(0x07, 0xF0);
  23. }
  24. void SetOutputState(uint8_t bit, uint8_t level) {
  25. uint16_t data;
  26. int index = bit;
  27. if (bit < 8) {
  28. data = ReadReg(0x02);
  29. } else {
  30. data = ReadReg(0x03);
  31. index -= 8;
  32. }
  33. data = (data & ~(1 << index)) | (level << index);
  34. if (bit < 8) {
  35. WriteReg(0x02, data);
  36. } else {
  37. WriteReg(0x03, data);
  38. }
  39. }
  40. };
  41. class atk_dnesp32s3 : public WifiBoard {
  42. private:
  43. i2c_master_bus_handle_t i2c_bus_;
  44. Button boot_button_;
  45. LcdDisplay* display_;
  46. XL9555* xl9555_;
  47. Esp32Camera* camera_;
  48. void InitializeI2c() {
  49. // Initialize I2C peripheral
  50. i2c_master_bus_config_t i2c_bus_cfg = {
  51. .i2c_port = (i2c_port_t)I2C_NUM_0,
  52. .sda_io_num = AUDIO_CODEC_I2C_SDA_PIN,
  53. .scl_io_num = AUDIO_CODEC_I2C_SCL_PIN,
  54. .clk_source = I2C_CLK_SRC_DEFAULT,
  55. .glitch_ignore_cnt = 7,
  56. .intr_priority = 0,
  57. .trans_queue_depth = 0,
  58. .flags = {
  59. .enable_internal_pullup = 1,
  60. },
  61. };
  62. ESP_ERROR_CHECK(i2c_new_master_bus(&i2c_bus_cfg, &i2c_bus_));
  63. // Initialize XL9555
  64. xl9555_ = new XL9555(i2c_bus_, 0x20);
  65. }
  66. // Initialize spi peripheral
  67. void InitializeSpi() {
  68. spi_bus_config_t buscfg = {};
  69. buscfg.mosi_io_num = LCD_MOSI_PIN;
  70. buscfg.miso_io_num = GPIO_NUM_NC;
  71. buscfg.sclk_io_num = LCD_SCLK_PIN;
  72. buscfg.quadwp_io_num = GPIO_NUM_NC;
  73. buscfg.quadhd_io_num = GPIO_NUM_NC;
  74. buscfg.max_transfer_sz = DISPLAY_WIDTH * DISPLAY_HEIGHT * sizeof(uint16_t);
  75. ESP_ERROR_CHECK(spi_bus_initialize(SPI2_HOST, &buscfg, SPI_DMA_CH_AUTO));
  76. }
  77. void InitializeButtons() {
  78. boot_button_.OnClick([this]() {
  79. auto& app = Application::GetInstance();
  80. if (app.GetDeviceState() == kDeviceStateStarting && !WifiStation::GetInstance().IsConnected()) {
  81. ResetWifiConfiguration();
  82. }
  83. app.ToggleChatState();
  84. });
  85. }
  86. void InitializeSt7789Display() {
  87. esp_lcd_panel_io_handle_t panel_io = nullptr;
  88. esp_lcd_panel_handle_t panel = nullptr;
  89. ESP_LOGD(TAG, "Install panel IO");
  90. // 液晶屏控制IO初始化
  91. esp_lcd_panel_io_spi_config_t io_config = {};
  92. io_config.cs_gpio_num = LCD_CS_PIN;
  93. io_config.dc_gpio_num = LCD_DC_PIN;
  94. io_config.spi_mode = 0;
  95. io_config.pclk_hz = 20 * 1000 * 1000;
  96. io_config.trans_queue_depth = 7;
  97. io_config.lcd_cmd_bits = 8;
  98. io_config.lcd_param_bits = 8;
  99. esp_lcd_new_panel_io_spi(SPI2_HOST, &io_config, &panel_io);
  100. // 初始化液晶屏驱动芯片ST7789
  101. ESP_LOGD(TAG, "Install LCD driver");
  102. esp_lcd_panel_dev_config_t panel_config = {};
  103. panel_config.reset_gpio_num = GPIO_NUM_NC;
  104. panel_config.rgb_ele_order = LCD_RGB_ELEMENT_ORDER_RGB;
  105. panel_config.bits_per_pixel = 16;
  106. panel_config.data_endian = LCD_RGB_DATA_ENDIAN_BIG,
  107. esp_lcd_new_panel_st7789(panel_io, &panel_config, &panel);
  108. esp_lcd_panel_reset(panel);
  109. xl9555_->SetOutputState(8, 1);
  110. xl9555_->SetOutputState(2, 0);
  111. esp_lcd_panel_init(panel);
  112. esp_lcd_panel_invert_color(panel, DISPLAY_BACKLIGHT_OUTPUT_INVERT);
  113. esp_lcd_panel_swap_xy(panel, DISPLAY_SWAP_XY);
  114. esp_lcd_panel_mirror(panel, DISPLAY_MIRROR_X, DISPLAY_MIRROR_Y);
  115. display_ = new SpiLcdDisplay(panel_io, panel,
  116. DISPLAY_WIDTH, DISPLAY_HEIGHT, DISPLAY_OFFSET_X, DISPLAY_OFFSET_Y, DISPLAY_MIRROR_X, DISPLAY_MIRROR_Y, DISPLAY_SWAP_XY,
  117. {
  118. .text_font = &font_puhui_20_4,
  119. .icon_font = &font_awesome_20_4,
  120. #if CONFIG_USE_WECHAT_MESSAGE_STYLE
  121. .emoji_font = font_emoji_32_init(),
  122. #else
  123. .emoji_font = DISPLAY_HEIGHT >= 240 ? font_emoji_64_init() : font_emoji_32_init(),
  124. #endif
  125. });
  126. }
  127. // 初始化摄像头:ov2640;
  128. // 根据正点原子官方示例参数
  129. void InitializeCamera() {
  130. xl9555_->SetOutputState(OV_PWDN_IO, 0); // PWDN=低 (上电)
  131. xl9555_->SetOutputState(OV_RESET_IO, 0); // 确保复位
  132. vTaskDelay(pdMS_TO_TICKS(50)); // 延长复位保持时间
  133. xl9555_->SetOutputState(OV_RESET_IO, 1); // 释放复位
  134. vTaskDelay(pdMS_TO_TICKS(50)); // 延长 50ms
  135. camera_config_t config = {};
  136. config.pin_pwdn = CAM_PIN_PWDN; // 实际由 XL9555 控制
  137. config.pin_reset = CAM_PIN_RESET;// 实际由 XL9555 控制
  138. config.pin_xclk = CAM_PIN_XCLK;
  139. config.pin_sccb_sda = CAM_PIN_SIOD;
  140. config.pin_sccb_scl = CAM_PIN_SIOC;
  141. config.pin_d7 = CAM_PIN_D7;
  142. config.pin_d6 = CAM_PIN_D6;
  143. config.pin_d5 = CAM_PIN_D5;
  144. config.pin_d4 = CAM_PIN_D4;
  145. config.pin_d3 = CAM_PIN_D3;
  146. config.pin_d2 = CAM_PIN_D2;
  147. config.pin_d1 = CAM_PIN_D1;
  148. config.pin_d0 = CAM_PIN_D0;
  149. config.pin_vsync = CAM_PIN_VSYNC;
  150. config.pin_href = CAM_PIN_HREF;
  151. config.pin_pclk = CAM_PIN_PCLK;
  152. /* XCLK 20MHz or 10MHz for OV2640 double FPS (Experimental) */
  153. config.xclk_freq_hz = 24000000;
  154. config.ledc_timer = LEDC_TIMER_0;
  155. config.ledc_channel = LEDC_CHANNEL_0;
  156. config.pixel_format = PIXFORMAT_RGB565; /* YUV422,GRAYSCALE,RGB565,JPEG */
  157. config.frame_size = FRAMESIZE_QVGA; /* QQVGA-UXGA, For ESP32, do not use sizes above QVGA when not JPEG. The performance of the ESP32-S series has improved a lot, but JPEG mode always gives better frame rates */
  158. config.jpeg_quality = 12; /* 0-63, for OV series camera sensors, lower number means higher quality */
  159. config.fb_count = 2; /* When jpeg mode is used, if fb_count more than one, the driver will work in continuous mode */
  160. config.fb_location = CAMERA_FB_IN_PSRAM;
  161. config.grab_mode = CAMERA_GRAB_WHEN_EMPTY;
  162. esp_err_t err = esp_camera_init(&config); // 测试相机是否存在
  163. if (err != ESP_OK) {
  164. ESP_LOGE(TAG, "Camera is not plugged in or not supported, error: %s", esp_err_to_name(err));
  165. // 如果摄像头初始化失败,设置 camera_ 为 nullptr
  166. camera_ = nullptr;
  167. return;
  168. }else
  169. {
  170. esp_camera_deinit();// 释放之前的摄像头资源,为正确初始化做准备
  171. camera_ = new Esp32Camera(config);
  172. }
  173. }
  174. public:
  175. atk_dnesp32s3() : boot_button_(BOOT_BUTTON_GPIO) {
  176. InitializeI2c();
  177. InitializeSpi();
  178. InitializeSt7789Display();
  179. InitializeButtons();
  180. InitializeCamera();
  181. }
  182. virtual Led* GetLed() override {
  183. static SingleLed led(BUILTIN_LED_GPIO);
  184. return &led;
  185. }
  186. virtual AudioCodec* GetAudioCodec() override {
  187. static Es8388AudioCodec audio_codec(
  188. i2c_bus_,
  189. I2C_NUM_0,
  190. AUDIO_INPUT_SAMPLE_RATE,
  191. AUDIO_OUTPUT_SAMPLE_RATE,
  192. AUDIO_I2S_GPIO_MCLK,
  193. AUDIO_I2S_GPIO_BCLK,
  194. AUDIO_I2S_GPIO_WS,
  195. AUDIO_I2S_GPIO_DOUT,
  196. AUDIO_I2S_GPIO_DIN,
  197. GPIO_NUM_NC,
  198. AUDIO_CODEC_ES8388_ADDR
  199. );
  200. return &audio_codec;
  201. }
  202. virtual Display* GetDisplay() override {
  203. return display_;
  204. }
  205. virtual Camera* GetCamera() override {
  206. return camera_;
  207. }
  208. };
  209. DECLARE_BOARD(atk_dnesp32s3);