From 02ee417df81122b6c9716e6cec27e78bd325c14f Mon Sep 17 00:00:00 2001 From: Sean Corrigan Date: Thu, 24 Dec 2020 16:46:03 -0500 Subject: [PATCH] bigger font --- display.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/display.py b/display.py index a2ecb4e..a40eae3 100644 --- a/display.py +++ b/display.py @@ -19,7 +19,7 @@ def sendUpdate(message): draw = ImageDraw.Draw(image) # font15 = ImageFont.truetype('wqy-microhei.ttc', 20) - font15 = ImageFont.truetype('fancyfont.ttf', 20) + font15 = ImageFont.truetype('fancyfont.ttf', 28) draw.text((3, 3), '{}'.format(message), font = font15, fill = 0) image = image.rotate(180) epd.display(epd.getbuffer(image))