From b61e9c90447cc7fb5bc65cb9607ab1dbd11ce4f9 Mon Sep 17 00:00:00 2001 From: Robert Borzutzki Date: Wed, 19 Oct 2022 10:24:11 +0200 Subject: [PATCH] ll --- examples/mqtt.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/mqtt.py b/examples/mqtt.py index 2a41042..b80ca55 100644 --- a/examples/mqtt.py +++ b/examples/mqtt.py @@ -66,11 +66,11 @@ def on_connect(client, userdata, flags, rc): print("Failed to connect, return code %d\n", rc) def on_message(client, userdata, msg): - drawblack.text((130, 0), '99', font = font10, fill = 0) - drawblack.text((130, 15), '99', font = font10, fill = 0) - drawblack.text((130, 30), '99', font = font10, fill = 0) - drawblack.text((130, 45), '99', font = font10, fill = 0) - drawblack.text((130, 60), '99', font = font10, fill = 0) + drawblack.text((150, 0), '99', font = font10, fill = 0) + drawblack.text((150, 15), '99', font = font10, fill = 0) + drawblack.text((150, 30), '99', font = font10, fill = 0) + drawblack.text((150, 45), '99', font = font10, fill = 0) + drawblack.text((150, 60), '99', font = font10, fill = 0) epd.display(epd.getbuffer(HBlackimage), epd.getbuffer(HRedimage)) print(f"`{msg.topic}`: `{msg.payload.decode()}`")