mirror of
https://github.com/esphome/esphome.git
synced 2025-01-08 22:01:44 +01:00
cleanup ili9xxx component by removing data rate define (#6350)
This commit is contained in:
parent
8850b959e9
commit
725b0c81e8
1 changed files with 1 additions and 5 deletions
|
@ -17,13 +17,9 @@ enum ILI9XXXColorMode {
|
||||||
BITS_16 = 0x10,
|
BITS_16 = 0x10,
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifndef ILI9XXXDisplay_DATA_RATE
|
|
||||||
#define ILI9XXXDisplay_DATA_RATE spi::DATA_RATE_40MHZ
|
|
||||||
#endif // ILI9XXXDisplay_DATA_RATE
|
|
||||||
|
|
||||||
class ILI9XXXDisplay : public display::DisplayBuffer,
|
class ILI9XXXDisplay : public display::DisplayBuffer,
|
||||||
public spi::SPIDevice<spi::BIT_ORDER_MSB_FIRST, spi::CLOCK_POLARITY_LOW,
|
public spi::SPIDevice<spi::BIT_ORDER_MSB_FIRST, spi::CLOCK_POLARITY_LOW,
|
||||||
spi::CLOCK_PHASE_LEADING, ILI9XXXDisplay_DATA_RATE> {
|
spi::CLOCK_PHASE_LEADING, spi::DATA_RATE_40MHZ> {
|
||||||
public:
|
public:
|
||||||
ILI9XXXDisplay() = default;
|
ILI9XXXDisplay() = default;
|
||||||
ILI9XXXDisplay(uint8_t const *init_sequence, int16_t width, int16_t height, bool invert_colors)
|
ILI9XXXDisplay(uint8_t const *init_sequence, int16_t width, int16_t height, bool invert_colors)
|
||||||
|
|
Loading…
Reference in a new issue