This commit is contained in:
Robert Borzutzki 2022-10-18 22:33:54 +02:00
parent 87c512dd6d
commit a6a8c612b4

View File

@ -57,7 +57,7 @@ def subscribe(client: mqtt_client):
HRYimage = Image.new('1', (epd.height, epd.width), 255) # 298*126 ryimage: red or yellow image
drawblack = ImageDraw.Draw(HBlackimage)
drawry = ImageDraw.Draw(HRYimage)
drawblack.text((10, 0), 'Received `{msg.payload.decode()}` from `{msg.topic}` topic', font = font20, fill = 0)
drawblack.text((10, 0), 'Received '+ msg.payload.decode()' from topic', font = font20, fill = 0)
epd.display(epd.getbuffer(HBlackimage), epd.getbuffer(HRYimage))
time.sleep(2)
@ -76,7 +76,7 @@ def subscribe(client: mqtt_client):
logging.info("Goto Sleep...")
epd.sleep()
print(f"Received `{msg.payload.decode()}` from `{msg.topic}` topic")
print(f"Received `{msg.payload.decode()}` from `{msg.topic}` topic")
client.subscribe(topic)
client.on_message = on_message