This commit is contained in:
Lukas Schulz 2020-12-20 21:30:15 +01:00
parent cd4fe25917
commit 23f0b15109

View file

@ -221,7 +221,7 @@ def main():
def drawClock(): def drawClock():
while True: while True:
time.sleep(0.4) time.sleep(0.4)
canvas = Image.new('RGB', (64,128), color = 'black') canvas = Image.new('RGB', (128,64), color = 'black')
clock_text = ImageDraw.Draw(canvas) clock_text = ImageDraw.Draw(canvas)
clock_text.text((20,0), datetime.now().strftime("%H:%M:%S"), font = clock_font, align = "center") clock_text.text((20,0), datetime.now().strftime("%H:%M:%S"), font = clock_font, align = "center")
showImage(canvas, 32, 0) showImage(canvas, 32, 0)