From 094db8dd51178453b4fd71e35dcf365b5bcf6f5f Mon Sep 17 00:00:00 2001 From: Robert Borzutzki Date: Wed, 19 Oct 2022 19:41:05 +0200 Subject: [PATCH] =?UTF-8?q?=C3=B6=C3=B6=C3=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/mqtt.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/mqtt.py b/examples/mqtt.py index 47ac533..b9c1515 100644 --- a/examples/mqtt.py +++ b/examples/mqtt.py @@ -38,7 +38,7 @@ try: logging.info("init and Clear") epd.init() epd.Clear() - time.sleep(0.5) + time.sleep(1) # Drawing on the image logging.info("Drawing") @@ -58,7 +58,7 @@ try: #epd.display(epd.getbuffer(HBlackimage), epd.getbuffer(HRedimage)) epd.display(epd.getbuffer(HBlackimage)) - time.sleep(2) + #time.sleep(1) except IOError as e: logging.info(e) @@ -153,11 +153,11 @@ try: drawblack.rectangle((150, 30, 220, 50), fill = 255) drawblack.text((150, 30), value_energyImportExport, font = font10, fill = 0) drawblack.rectangle((150, 45, 220, 50), fill = 255) - drawblack.text((150, 45), value_houseBatteryLoadUnload, font = font10, fill = 0) + drawblack.text((150, 45), value_houseBatterySoC, font = font10, fill = 0) drawblack.rectangle((150, 60, 220, 50), fill = 1) drawblack.text((150, 60), value_houseBatteryLoadUnload, font = font10, fill = 0) - epd.DisplayPartial(epd.getbuffer(HBlackimage)) + epd.display(epd.getbuffer(HBlackimage)) except KeyboardInterrupt: print("exiting")