mirror of
https://github.com/esphome/esphome.git
synced 2024-12-04 20:48:21 +01:00
491f7e96f0
* TFT-LCD ST7789V of ESP32 TTGO. This patch allows you to use TFT-LCD ST7789V of ESP32 TTGO * Lots of polish and a few tweaks * Add test * Add color to core, take 1 * Where did those tabs come from? * Fix lines too long * Added color component * Linted * Rebase, SPI fix, test * Shuffle bits * One more thing...oops * Image type fix...oops * Make display_buffer use Color * Fix BGR/RGB, remove predefined colors * Fix all the things * renamed colors to color * migrate max7219 Co-authored-by: musk95 <musk95@naver.com> Co-authored-by: Guillermo Ruffino <glm.net@gmail.com>
151 lines
7.9 KiB
C++
151 lines
7.9 KiB
C++
#pragma once
|
|
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/components/spi/spi.h"
|
|
#include "esphome/components/display/display_buffer.h"
|
|
|
|
namespace esphome {
|
|
namespace st7789v {
|
|
|
|
static const uint8_t BLACK = 0;
|
|
static const uint8_t WHITE = 1;
|
|
|
|
static const uint8_t ST7789_NOP = 0x00; // No Operation
|
|
static const uint8_t ST7789_SWRESET = 0x01; // Software Reset
|
|
static const uint8_t ST7789_RDDID = 0x04; // Read Display ID
|
|
static const uint8_t ST7789_RDDST = 0x09; // Read Display Status
|
|
static const uint8_t ST7789_RDDPM = 0x0A; // Read Display Power Mode
|
|
static const uint8_t ST7789_RDDMADCTL = 0x0B; // Read Display MADCTL
|
|
static const uint8_t ST7789_RDDCOLMOD = 0x0C; // Read Display Pixel Format
|
|
static const uint8_t ST7789_RDDIM = 0x0D; // Read Display Image Mode
|
|
static const uint8_t ST7789_RDDSM = 0x0E; // Read Display Signal Mod
|
|
static const uint8_t ST7789_RDDSDR = 0x0F; // Read Display Self-Diagnostic Resul
|
|
static const uint8_t ST7789_SLPIN = 0x10; // Sleep in
|
|
static const uint8_t ST7789_SLPOUT = 0x11; // Sleep Out
|
|
static const uint8_t ST7789_PTLON = 0x12; // Partial Display Mode O
|
|
static const uint8_t ST7789_NORON = 0x13; // Normal Display Mode O
|
|
static const uint8_t ST7789_INVOFF = 0x20; // Display Inversion Off
|
|
static const uint8_t ST7789_INVON = 0x21; // Display Inversion O
|
|
static const uint8_t ST7789_GAMSET = 0x26; // Gamma Set
|
|
static const uint8_t ST7789_DISPOFF = 0x28; // Display Off
|
|
static const uint8_t ST7789_DISPON = 0x29; // Display On
|
|
static const uint8_t ST7789_CASET = 0x2A; // Column Address Set
|
|
static const uint8_t ST7789_RASET = 0x2B; // Row Address Set
|
|
static const uint8_t ST7789_RAMWR = 0x2C; // Memory Write
|
|
static const uint8_t ST7789_RAMRD = 0x2E; // Memory Read
|
|
static const uint8_t ST7789_PTLAR = 0x30; // Partial Area
|
|
static const uint8_t ST7789_VSCRDEF = 0x33; // Vertical Scrolling Definitio
|
|
static const uint8_t ST7789_TEOFF = 0x34; // Tearing Effect Line OFF
|
|
static const uint8_t ST7789_TEON = 0x35; // Tearing Effect Line On
|
|
static const uint8_t ST7789_MADCTL = 0x36; // Memory Data Access Control
|
|
static const uint8_t ST7789_VSCSAD = 0x37; // Vertical Scroll Start Address of RAM
|
|
static const uint8_t ST7789_IDMOFF = 0x38; // Idle Mode Off
|
|
static const uint8_t ST7789_IDMON = 0x39; // Idle mode on
|
|
static const uint8_t ST7789_COLMOD = 0x3A; // Interface Pixel Format
|
|
static const uint8_t ST7789_WRMEMC = 0x3C; // Write Memory Continue
|
|
static const uint8_t ST7789_RDMEMC = 0x3E; // Read Memory Continue
|
|
static const uint8_t ST7789_STE = 0x44; // Set Tear Scanline
|
|
static const uint8_t ST7789_GSCAN = 0x45; // Get Scanlin
|
|
static const uint8_t ST7789_WRDISBV = 0x51; // Write Display Brightness
|
|
static const uint8_t ST7789_RDDISBV = 0x52; // Read Display Brightness Value
|
|
static const uint8_t ST7789_WRCTRLD = 0x53; // Write CTRL Display
|
|
static const uint8_t ST7789_RDCTRLD = 0x54; // Read CTRL Value Display
|
|
static const uint8_t ST7789_WRCACE = 0x55; // Write Content Adaptive Brightness Control and Color Enhancement
|
|
static const uint8_t ST7789_RDCABC = 0x56; // Read Content Adaptive Brightness Control
|
|
static const uint8_t ST7789_WRCABCMB = 0x5E; // Write CABC Minimum Brightnes
|
|
static const uint8_t ST7789_RDCABCMB = 0x5F; // Read CABC Minimum Brightnes
|
|
static const uint8_t ST7789_RDABCSDR = 0x68; // Read Automatic Brightness Control Self-Diagnostic Result
|
|
static const uint8_t ST7789_RDID1 = 0xDA; // Read ID1
|
|
static const uint8_t ST7789_RDID2 = 0xDB; // Read ID2
|
|
static const uint8_t ST7789_RDID3 = 0xDC; // Read ID3
|
|
static const uint8_t ST7789_RAMCTRL = 0xB0; // RAM Control
|
|
static const uint8_t ST7789_RGBCTRL = 0xB1; // RGB Interface Contro
|
|
static const uint8_t ST7789_PORCTRL = 0xB2; // Porch Setting
|
|
static const uint8_t ST7789_FRCTRL1 = 0xB3; // Frame Rate Control 1 (In partial mode/ idle colors)
|
|
static const uint8_t ST7789_PARCTRL = 0xB5; // Partial mode Contro
|
|
static const uint8_t ST7789_GCTRL = 0xB7; // Gate Contro
|
|
static const uint8_t ST7789_GTADJ = 0xB8; // Gate On Timing Adjustmen
|
|
static const uint8_t ST7789_DGMEN = 0xBA; // Digital Gamma Enable
|
|
static const uint8_t ST7789_VCOMS = 0xBB; // VCOMS Setting
|
|
static const uint8_t ST7789_LCMCTRL = 0xC0; // LCM Control
|
|
static const uint8_t ST7789_IDSET = 0xC1; // ID Code Settin
|
|
static const uint8_t ST7789_VDVVRHEN = 0xC2; // VDV and VRH Command Enabl
|
|
static const uint8_t ST7789_VRHS = 0xC3; // VRH Set
|
|
static const uint8_t ST7789_VDVS = 0xC4; // VDV Set
|
|
static const uint8_t ST7789_VCMOFSET = 0xC5; // VCOMS Offset Set
|
|
static const uint8_t ST7789_FRCTRL2 = 0xC6; // Frame Rate Control in Normal Mode
|
|
static const uint8_t ST7789_CABCCTRL = 0xC7; // CABC Control
|
|
static const uint8_t ST7789_REGSEL1 = 0xC8; // Register Value Selection 1
|
|
static const uint8_t ST7789_REGSEL2 = 0xCA; // Register Value Selection
|
|
static const uint8_t ST7789_PWMFRSEL = 0xCC; // PWM Frequency Selection
|
|
static const uint8_t ST7789_PWCTRL1 = 0xD0; // Power Control 1
|
|
static const uint8_t ST7789_VAPVANEN = 0xD2; // Enable VAP/VAN signal output
|
|
static const uint8_t ST7789_CMD2EN = 0xDF; // Command 2 Enable
|
|
static const uint8_t ST7789_PVGAMCTRL = 0xE0; // Positive Voltage Gamma Control
|
|
static const uint8_t ST7789_NVGAMCTRL = 0xE1; // Negative Voltage Gamma Control
|
|
static const uint8_t ST7789_DGMLUTR = 0xE2; // Digital Gamma Look-up Table for Red
|
|
static const uint8_t ST7789_DGMLUTB = 0xE3; // Digital Gamma Look-up Table for Blue
|
|
static const uint8_t ST7789_GATECTRL = 0xE4; // Gate Control
|
|
static const uint8_t ST7789_SPI2EN = 0xE7; // SPI2 Enable
|
|
static const uint8_t ST7789_PWCTRL2 = 0xE8; // Power Control 2
|
|
static const uint8_t ST7789_EQCTRL = 0xE9; // Equalize time control
|
|
static const uint8_t ST7789_PROMCTRL = 0xEC; // Program Mode Contro
|
|
static const uint8_t ST7789_PROMEN = 0xFA; // Program Mode Enabl
|
|
static const uint8_t ST7789_NVMSET = 0xFC; // NVM Setting
|
|
static const uint8_t ST7789_PROMACT = 0xFE; // Program action
|
|
|
|
// Flags for ST7789_MADCTL
|
|
static const uint8_t ST7789_MADCTL_MY = 0x80;
|
|
static const uint8_t ST7789_MADCTL_MX = 0x40;
|
|
static const uint8_t ST7789_MADCTL_MV = 0x20;
|
|
static const uint8_t ST7789_MADCTL_ML = 0x10;
|
|
static const uint8_t ST7789_MADCTL_RGB = 0x00;
|
|
static const uint8_t ST7789_MADCTL_BGR = 0x08;
|
|
static const uint8_t ST7789_MADCTL_MH = 0x04;
|
|
static const uint8_t ST7789_MADCTL_SS = 0x02;
|
|
static const uint8_t ST7789_MADCTL_GS = 0x01;
|
|
|
|
static const uint8_t ST7789_MADCTL_COLOR_ORDER = ST7789_MADCTL_BGR;
|
|
|
|
class ST7789V : public PollingComponent,
|
|
public display::DisplayBuffer,
|
|
public spi::SPIDevice<spi::BIT_ORDER_MSB_FIRST, spi::CLOCK_POLARITY_HIGH, spi::CLOCK_PHASE_TRAILING,
|
|
spi::DATA_RATE_8MHZ> {
|
|
public:
|
|
void set_dc_pin(GPIOPin *dc_pin) { this->dc_pin_ = dc_pin; }
|
|
void set_reset_pin(GPIOPin *reset_pin) { this->reset_pin_ = reset_pin; }
|
|
void set_backlight_pin(GPIOPin *backlight_pin) { this->backlight_pin_ = backlight_pin; }
|
|
|
|
// ========== INTERNAL METHODS ==========
|
|
// (In most use cases you won't need these)
|
|
void setup() override;
|
|
void dump_config() override;
|
|
float get_setup_priority() const override;
|
|
void update() override;
|
|
void loop() override;
|
|
|
|
void write_display_data();
|
|
|
|
protected:
|
|
GPIOPin *dc_pin_;
|
|
GPIOPin *reset_pin_{nullptr};
|
|
GPIOPin *backlight_pin_{nullptr};
|
|
|
|
void init_reset_();
|
|
void backlight_(bool onoff);
|
|
void write_command_(uint8_t value);
|
|
void write_data_(uint8_t value);
|
|
void write_addr_(uint16_t addr1, uint16_t addr2);
|
|
void write_color_(uint16_t color, uint16_t size);
|
|
|
|
int get_height_internal() override;
|
|
int get_width_internal() override;
|
|
size_t get_buffer_length_();
|
|
|
|
void draw_filled_rect_(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t color);
|
|
|
|
void draw_absolute_pixel_internal(int x, int y, Color color) override;
|
|
};
|
|
|
|
} // namespace st7789v
|
|
} // namespace esphome
|