diff options
| author | Nano <nanocodebug@gmail.com> | 2024-03-17 20:16:31 -0700 |
|---|---|---|
| committer | Nano <nanocodebug@gmail.com> | 2024-03-17 20:16:31 -0700 |
| commit | c4238173345ae65b69535c21b282448d5f012d43 (patch) | |
| tree | 4b8f707f22481af0402c4e7e4659cb04aaf7ea75 /src/drivers/display.cpp | |
| parent | 1ea25ab9d3bc9d7ad85bccd3a3c9e4f56c71a80f (diff) | |
| download | tangara-fw-c4238173345ae65b69535c21b282448d5f012d43.tar.gz | |
fixes for my green-tab adafruit ST7735R
Diffstat (limited to 'src/drivers/display.cpp')
| -rw-r--r-- | src/drivers/display.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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; |
