From a0dd880e13bcf14428a854e489f894bb9aceaa64 Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Fri, 12 Mar 2021 09:07:45 -0800 Subject: [PATCH] Fix ram offset for ssd1680 --- adafruit_epd/ssd1680.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adafruit_epd/ssd1680.py b/adafruit_epd/ssd1680.py index fd632fb..a975277 100644 --- a/adafruit_epd/ssd1680.py +++ b/adafruit_epd/ssd1680.py @@ -136,7 +136,7 @@ def power_up(self): self.command(_SSD1680_SOURCE_VOLTAGE, bytearray([0x41, 0x00, 0x32])) # Set ram X start/end postion - self.command(_SSD1680_SET_RAMXPOS, bytearray([0x00, 0x0F])) + self.command(_SSD1680_SET_RAMXPOS, bytearray([0x01, 0x10])) # Set ram Y start/end postion self.command( _SSD1680_SET_RAMYPOS,