From fd9b35ff288df96db8776d9665637579eb80c508 Mon Sep 17 00:00:00 2001 From: Sean Corrigan Date: Thu, 24 Dec 2020 14:12:05 -0500 Subject: [PATCH] Flipped image 180 --- display.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/display.py b/display.py index eaa423e..c110390 100644 --- a/display.py +++ b/display.py @@ -14,6 +14,8 @@ def sendUpdate(message): # Drawing on the image image = Image.new('1', (epd2in13.EPD_HEIGHT, epd2in13.EPD_WIDTH), 255) # 255: clear the frame + image = image.rotate(180) + # angle = 45 # message = "testing 123 what is going\n on ahbfuasdfhkgasyudgfuasykgdf" draw = ImageDraw.Draw(image)