forked from xiaozhi/xiaozhi-esp32
* update surfer-c3-1.14tft font size * Move fonts / assets definition from main/boards to CMakeLists.txt * fix c3 compiling errors --------- Co-authored-by: Xiaoxia <terrence.huang@tenclass.com>
212 lines
7.6 KiB
C++
212 lines
7.6 KiB
C++
#include "dual_network_board.h"
|
|
#include "codecs/no_audio_codec.h"
|
|
#include "../zhengchen-1.54tft-wifi/zhengchen_lcd_display.h"
|
|
#include "system_reset.h"
|
|
#include "application.h"
|
|
#include "button.h"
|
|
#include "config.h"
|
|
#include "power_save_timer.h"
|
|
#include "led/single_led.h"
|
|
#include "assets/lang_config.h"
|
|
#include "../zhengchen-1.54tft-wifi/power_manager.h"
|
|
|
|
#include <esp_log.h>
|
|
#include <esp_lcd_panel_vendor.h>
|
|
#include <wifi_station.h>
|
|
|
|
#include <driver/rtc_io.h>
|
|
#include <esp_sleep.h>
|
|
|
|
#define TAG "ZHENGCHEN_1_54TFT_ML307"
|
|
|
|
class ZHENGCHEN_1_54TFT_ML307 : public DualNetworkBoard {
|
|
private:
|
|
Button boot_button_;
|
|
Button volume_up_button_;
|
|
Button volume_down_button_;
|
|
ZHENGCHEN_LcdDisplay* display_;
|
|
PowerSaveTimer* power_save_timer_;
|
|
PowerManager* power_manager_;
|
|
esp_lcd_panel_io_handle_t panel_io_ = nullptr;
|
|
esp_lcd_panel_handle_t panel_ = nullptr;
|
|
|
|
void InitializePowerManager() {
|
|
power_manager_ = new PowerManager(GPIO_NUM_9);
|
|
power_manager_->OnTemperatureChanged([this](float chip_temp) {
|
|
display_->UpdateHighTempWarning(chip_temp);
|
|
});
|
|
power_manager_->OnChargingStatusChanged([this](bool is_charging) {
|
|
if (is_charging) {
|
|
power_save_timer_->SetEnabled(false);
|
|
} else {
|
|
power_save_timer_->SetEnabled(true);
|
|
}
|
|
});
|
|
}
|
|
|
|
void InitializePowerSaveTimer() {
|
|
rtc_gpio_init(GPIO_NUM_2);
|
|
rtc_gpio_set_direction(GPIO_NUM_2, RTC_GPIO_MODE_OUTPUT_ONLY);
|
|
rtc_gpio_set_level(GPIO_NUM_2, 1);
|
|
|
|
power_save_timer_ = new PowerSaveTimer(-1, 60, 300);
|
|
power_save_timer_->OnEnterSleepMode([this]() {
|
|
GetDisplay()->SetPowerSaveMode(true);
|
|
GetBacklight()->SetBrightness(1);
|
|
});
|
|
power_save_timer_->OnExitSleepMode([this]() {
|
|
GetDisplay()->SetPowerSaveMode(false);
|
|
GetBacklight()->RestoreBrightness();
|
|
});
|
|
power_save_timer_->SetEnabled(true);
|
|
}
|
|
|
|
void InitializeSpi() {
|
|
spi_bus_config_t buscfg = {};
|
|
buscfg.mosi_io_num = DISPLAY_SDA;
|
|
buscfg.miso_io_num = GPIO_NUM_NC;
|
|
buscfg.sclk_io_num = DISPLAY_SCL;
|
|
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 InitializeButtons() {
|
|
boot_button_.OnClick([this]() {
|
|
power_save_timer_->WakeUp();
|
|
auto& app = Application::GetInstance();
|
|
if (GetNetworkType() == NetworkType::WIFI) {
|
|
if (app.GetDeviceState() == kDeviceStateStarting && !WifiStation::GetInstance().IsConnected()) {
|
|
// cast to WifiBoard
|
|
auto& wifi_board = static_cast<WifiBoard&>(GetCurrentBoard());
|
|
wifi_board.ResetWifiConfiguration();
|
|
}
|
|
}
|
|
app.ToggleChatState();
|
|
});
|
|
|
|
boot_button_.OnLongPress([this]() {
|
|
SwitchNetworkType();
|
|
});
|
|
|
|
volume_up_button_.OnClick([this]() {
|
|
power_save_timer_->WakeUp();
|
|
auto codec = GetAudioCodec();
|
|
auto volume = codec->output_volume() + 10;
|
|
if (volume > 100) {
|
|
volume = 100;
|
|
}
|
|
codec->SetOutputVolume(volume);
|
|
GetDisplay()->ShowNotification(Lang::Strings::VOLUME + std::to_string(volume/10));
|
|
});
|
|
|
|
volume_up_button_.OnLongPress([this]() {
|
|
power_save_timer_->WakeUp();
|
|
GetAudioCodec()->SetOutputVolume(100);
|
|
GetDisplay()->ShowNotification(Lang::Strings::MAX_VOLUME);
|
|
});
|
|
|
|
volume_down_button_.OnClick([this]() {
|
|
power_save_timer_->WakeUp();
|
|
auto codec = GetAudioCodec();
|
|
auto volume = codec->output_volume() - 10;
|
|
if (volume < 0) {
|
|
volume = 0;
|
|
}
|
|
codec->SetOutputVolume(volume);
|
|
GetDisplay()->ShowNotification(Lang::Strings::VOLUME + std::to_string(volume/10));
|
|
});
|
|
|
|
volume_down_button_.OnLongPress([this]() {
|
|
power_save_timer_->WakeUp();
|
|
GetAudioCodec()->SetOutputVolume(0);
|
|
GetDisplay()->ShowNotification(Lang::Strings::MUTED);
|
|
});
|
|
}
|
|
|
|
void InitializeSt7789Display() {
|
|
ESP_LOGD(TAG, "Install panel IO");
|
|
esp_lcd_panel_io_spi_config_t io_config = {};
|
|
io_config.cs_gpio_num = DISPLAY_CS;
|
|
io_config.dc_gpio_num = DISPLAY_DC;
|
|
io_config.spi_mode = 3;
|
|
io_config.pclk_hz = 80 * 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_));
|
|
|
|
ESP_LOGD(TAG, "Install LCD driver");
|
|
esp_lcd_panel_dev_config_t panel_config = {};
|
|
panel_config.reset_gpio_num = DISPLAY_RES;
|
|
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 ZHENGCHEN_LcdDisplay(panel_io_, panel_, DISPLAY_WIDTH, DISPLAY_HEIGHT, DISPLAY_OFFSET_X, DISPLAY_OFFSET_Y,
|
|
DISPLAY_MIRROR_X, DISPLAY_MIRROR_Y, DISPLAY_SWAP_XY);
|
|
display_->SetupHighTempWarningPopup();
|
|
}
|
|
|
|
public:
|
|
ZHENGCHEN_1_54TFT_ML307() :
|
|
DualNetworkBoard(ML307_TX_PIN, ML307_RX_PIN),
|
|
boot_button_(BOOT_BUTTON_GPIO),
|
|
volume_up_button_(VOLUME_UP_BUTTON_GPIO),
|
|
volume_down_button_(VOLUME_DOWN_BUTTON_GPIO) {
|
|
InitializePowerManager();
|
|
InitializePowerSaveTimer();
|
|
InitializeSpi();
|
|
InitializeButtons();
|
|
InitializeSt7789Display();
|
|
GetBacklight()->RestoreBrightness();
|
|
}
|
|
|
|
virtual AudioCodec* GetAudioCodec() override {
|
|
static NoAudioCodecSimplex audio_codec(AUDIO_INPUT_SAMPLE_RATE, AUDIO_OUTPUT_SAMPLE_RATE,
|
|
AUDIO_I2S_SPK_GPIO_BCLK, AUDIO_I2S_SPK_GPIO_LRCK, AUDIO_I2S_SPK_GPIO_DOUT, AUDIO_I2S_MIC_GPIO_SCK, AUDIO_I2S_MIC_GPIO_WS, AUDIO_I2S_MIC_GPIO_DIN);
|
|
return &audio_codec;
|
|
}
|
|
|
|
virtual Display* GetDisplay() override {
|
|
return display_;
|
|
}
|
|
|
|
virtual Backlight* GetBacklight() override {
|
|
static PwmBacklight backlight(DISPLAY_BACKLIGHT_PIN, DISPLAY_BACKLIGHT_OUTPUT_INVERT);
|
|
return &backlight;
|
|
}
|
|
|
|
virtual bool GetBatteryLevel(int& level, bool& charging, bool& discharging) override {
|
|
static bool last_discharging = false;
|
|
charging = power_manager_->IsCharging();
|
|
discharging = power_manager_->IsDischarging();
|
|
if (discharging != last_discharging) {
|
|
power_save_timer_->SetEnabled(discharging);
|
|
last_discharging = discharging;
|
|
}
|
|
level = std::max<uint32_t>(power_manager_->GetBatteryLevel(), 20);
|
|
return true;
|
|
}
|
|
|
|
virtual bool GetTemperature(float& esp32temp) override {
|
|
esp32temp = power_manager_->GetTemperature();
|
|
return true;
|
|
}
|
|
|
|
virtual void SetPowerSaveMode(bool enabled) override {
|
|
if (!enabled) {
|
|
power_save_timer_->WakeUp();
|
|
}
|
|
DualNetworkBoard::SetPowerSaveMode(enabled);
|
|
}
|
|
};
|
|
|
|
DECLARE_BOARD(ZHENGCHEN_1_54TFT_ML307);
|