From 7bc31cf587317e1fc4b7691577fa790b170a725a Mon Sep 17 00:00:00 2001 From: Gal Date: Mon, 1 Apr 2024 21:36:02 +0200 Subject: [PATCH] Code cleanup --- display.py | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/display.py b/display.py index 1f78dc9..a2c98ed 100644 --- a/display.py +++ b/display.py @@ -4,16 +4,16 @@ import os import logging from PIL import Image -libdir = "./lib/e-Paper/RaspberryPi_JetsonNano/python/lib" +libdir = "./e-Paper/RaspberryPi_JetsonNano/python/lib" if os.path.exists(libdir): sys.path.append(libdir) -from waveshare_epd import epd7in5_V2 as epd7in5 +from waveshare_epd import epd7in5_V2 # Ref https://github.com/waveshareteam/e-Paper/blob/master/RaspberryPi_JetsonNano/python/examples/epd_7in5_V2_test.py def main(): try: - epd = epd7in5.EPD() + epd = epd7in5_V2.EPD() logging.debug("Initializing e-Paper display") epd.init() @@ -26,12 +26,8 @@ def main(): epd.display(epd.getbuffer(Himage)) # Put the display to sleep - epd.sleep() logging.debug("Putting display to sleep") - - # Clean up resources - epd.Dev_exit() - logging.debug("Exiting") + epd.sleep() except IOError as e: logging.exception("IOError occurred: " + str(e))