From a3432b55221c0ac915a8014b59cc1677a64b645e Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 28 Dec 2019 18:27:09 +0100 Subject: Probably fixes inconsistent letters --- epaper/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epaper/main.py b/epaper/main.py index 6d08177..8c4b877 100644 --- a/epaper/main.py +++ b/epaper/main.py @@ -13,9 +13,9 @@ font_size = 12 epd = epd2in13.EPD() epd.init(epd.FULL_UPDATE) -epd.Clear(0xFF) while 1: + epd.Clear(0xFF) image = Image.new('1', (epd2in13.EPD_HEIGHT, epd2in13.EPD_WIDTH), 255) # 255: clear the frame draw = ImageDraw.Draw(image) font = ImageFont.truetype('/usr/share/fonts/truetype/wqy/wqy-microhei.ttc', font_size) -- cgit v1.2.3