From 8b03dae42ac285515d3ea7593a62c365495e9c78 Mon Sep 17 00:00:00 2001 From: Ace Date: Mon, 4 Mar 2019 21:28:47 +0100 Subject: [PATCH] Some small improvements --- Calendar/E-Paper.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Calendar/E-Paper.py b/Calendar/E-Paper.py index f24ba64..37f7e7e 100644 --- a/Calendar/E-Paper.py +++ b/Calendar/E-Paper.py @@ -301,6 +301,7 @@ def main(): """ def display_corrected_image(image): + print('Improving the colours of the generated image.') # Uncomment following line to save the unprocessed image # image.save(path+'before.bmp') width, height = image.size @@ -317,9 +318,10 @@ def main(): pixels[x, y] = (255, 0, 0) else: pixels[x, y] = (0, 0, 0) + print('Conversion finished. Enjoy a crisp image on the E-Paper') # Uncomment following line to save the processed image - image.save(path+'after.bmp') + # image.save(path+'after.bmp') print('Initialising E-Paper Display') epd.init()