From 78bd92306362b11ea00ef961384cf60411157f97 Mon Sep 17 00:00:00 2001 From: Jack Danger Date: Tue, 2 May 2023 21:51:49 -0700 Subject: [PATCH] fix misnamed EPD_2in66_B --- python/Pico_ePaper-2.66-B.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/Pico_ePaper-2.66-B.py b/python/Pico_ePaper-2.66-B.py index 05dcb38..d6e7efc 100644 --- a/python/Pico_ePaper-2.66-B.py +++ b/python/Pico_ePaper-2.66-B.py @@ -59,7 +59,7 @@ 0x00,0x00,0x00,0x22,0x17,0x41,0xB0,0x32,0x36, ] -class EPD_2in9_B: +class EPD_2in66_B: def __init__(self): self.reset_pin = Pin(RST_PIN, Pin.OUT) @@ -214,7 +214,7 @@ def sleep(self): self.send_data(0x01) if __name__=='__main__': - epd = EPD_2in9_B() + epd = EPD_2in66_B() epd.Clear(0xff, 0xff) epd.imageblack.fill(0xff)