From a655af4e0406c893d08dc82a534300882cb0d1ab Mon Sep 17 00:00:00 2001 From: Robert Borzutzki Date: Wed, 19 Oct 2022 20:00:22 +0200 Subject: [PATCH] change to b_V3 lib --- examples/mqtt.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/mqtt.py b/examples/mqtt.py index e37e31e..92e1826 100644 --- a/examples/mqtt.py +++ b/examples/mqtt.py @@ -8,7 +8,7 @@ if os.path.exists(libdir): sys.path.append(libdir) import logging -from waveshare_epd import epd2in13b +from waveshare_epd import epd2in13b_V3 import time from PIL import Image,ImageDraw,ImageFont import traceback @@ -32,7 +32,7 @@ pw = "phio6yiR9ohs1veeghu4WaeGhaiRi8he4EiWasheev4faeku8tohdiuthah7zahP" client_id = "solarmonitor" try: - epd = epd2in13b.EPD() + epd = epd2in13b_V3.EPD() logging.info("init and Clear") epd.init() epd.Clear() @@ -43,7 +43,7 @@ except IOError as e: except KeyboardInterrupt: logging.info("ctrl + c:") - epd2in13b.epdconfig.module_exit() + epd2in13b_V3.epdconfig.module_exit() exit() def on_connect(client, userdata, flags, rc):