mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 17:27:45 +01:00
display: fix white screen on binary displays (#4991)
This commit is contained in:
parent
df9fcf9850
commit
a90d266017
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ namespace 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);
|
||||
|
||||
void Rect::expand(int16_t horizontal, int16_t vertical) {
|
||||
|
|
Loading…
Reference in a new issue