mirror of
https://github.com/esphome/esphome.git
synced 2024-11-26 17:05:21 +01:00
display: fix white screen on binary displays (#4991)
This commit is contained in:
parent
52d7d2cae7
commit
85608a8ab7
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ namespace display {
|
||||||
|
|
||||||
static const char *const TAG = "display";
|
static const char *const TAG = "display";
|
||||||
|
|
||||||
const Color COLOR_OFF(0, 0, 0, 255);
|
const Color COLOR_OFF(0, 0, 0, 0);
|
||||||
const Color COLOR_ON(255, 255, 255, 255);
|
const Color COLOR_ON(255, 255, 255, 255);
|
||||||
|
|
||||||
void DisplayBuffer::init_internal_(uint32_t buffer_length) {
|
void DisplayBuffer::init_internal_(uint32_t buffer_length) {
|
||||||
|
|
Loading…
Reference in a new issue