From c4238173345ae65b69535c21b282448d5f012d43 Mon Sep 17 00:00:00 2001 From: Nano Date: Sun, 17 Mar 2024 20:16:31 -0700 Subject: fixes for my green-tab adafruit ST7735R --- src/drivers/display.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/drivers/display.cpp') diff --git a/src/drivers/display.cpp b/src/drivers/display.cpp index cb3ee3a0..026e1346 100644 --- a/src/drivers/display.cpp +++ b/src/drivers/display.cpp @@ -40,8 +40,8 @@ [[maybe_unused]] static const char* kTag = "DISPLAY"; // TODO(jacqueline): Encode width and height variations in the init data. -static const uint8_t kDisplayHeight = 128 + 2; -static const uint8_t kDisplayWidth = 160 + 1; +static const uint8_t kDisplayHeight = 128; +static const uint8_t kDisplayWidth = 160; static const uint8_t kTransactionQueueSize = 2; static const gpio_num_t kDisplayDr = GPIO_NUM_33; -- cgit v1.2.3