e-paper-display/examples/mqtt.py

133 lines
4.0 KiB
Python
Raw Normal View History

2022-10-18 20:38:02 +00:00
#!/usr/bin/python
# -*- coding:utf-8 -*-
import sys
import os
picdir = os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))), 'pic')
libdir = os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))), 'lib')
if os.path.exists(libdir):
sys.path.append(libdir)
import logging
2022-10-19 11:19:34 +00:00
from waveshare_epd import epd2in13d
2022-10-18 20:38:02 +00:00
import time
from PIL import Image,ImageDraw,ImageFont
import traceback
from paho.mqtt import client as mqtt_client
2022-10-19 06:40:32 +00:00
import paho.mqtt.client as paho
2022-10-18 20:38:02 +00:00
logging.basicConfig(level=logging.DEBUG)
2022-10-18 21:00:28 +00:00
Connected = False
2022-10-19 07:21:28 +00:00
try:
logging.info("epd2in13bc Demo")
2022-10-19 11:19:34 +00:00
epd = epd2in13d.EPD()
2022-10-19 07:21:28 +00:00
logging.info("init and Clear")
2022-10-19 11:19:34 +00:00
epd.init()
epd.Clear()
2022-10-19 08:21:21 +00:00
time.sleep(0.5)
2022-10-19 07:21:28 +00:00
# Drawing on the image
logging.info("Drawing")
2022-10-19 07:28:23 +00:00
font10 = ImageFont.truetype(os.path.join(picdir, 'Font.ttc'), 12)
2022-10-19 07:21:28 +00:00
# Drawing on the Horizontal image
logging.info("1.Drawing on the Horizontal image...")
HBlackimage = Image.new('1', (epd.height, epd.width), 255) # 298*126
2022-10-19 11:16:12 +00:00
#HRedimage = Image.new('1', (epd.height, epd.width), 255) # 298*126 ryimage: red or yellow image
2022-10-19 07:21:28 +00:00
drawblack = ImageDraw.Draw(HBlackimage)
2022-10-19 11:16:12 +00:00
#drawred = ImageDraw.Draw(HRedimage)
2022-10-19 12:55:48 +00:00
#drawblack.text((5, 0), 'PV Produktion', font = font10, fill = 0)
#drawblack.text((5, 15), 'Hausverbrauch', font = font10, fill = 0)
#drawblack.text((5, 30), 'Strom Import/Export', font = font10, fill = 0)
#drawblack.text((5, 45), 'Batterie %', font = font10, fill = 0)
#drawblack.text((5, 60), 'Batterie Laden/Entladen', font = font10, fill = 0)
2022-10-19 11:16:12 +00:00
#epd.display(epd.getbuffer(HBlackimage), epd.getbuffer(HRedimage))
2022-10-19 12:55:48 +00:00
#epd.DisplayPartial(epd.getbuffer(HBlackimage))
2022-10-19 11:52:50 +00:00
2022-10-19 13:01:11 +00:00
values_image = Image.new('1', (epd.height, epd.width), 255)
2022-10-19 12:53:13 +00:00
values_draw = ImageDraw.Draw(values_image)
2022-10-19 11:52:50 +00:00
2022-10-19 07:22:50 +00:00
time.sleep(2)
2022-10-19 07:21:28 +00:00
except IOError as e:
logging.info(e)
except KeyboardInterrupt:
logging.info("ctrl + c:")
2022-10-19 11:19:34 +00:00
epd2in13d.epdconfig.module_exit()
2022-10-19 07:21:28 +00:00
exit()
2022-10-18 21:00:28 +00:00
2022-10-18 21:02:28 +00:00
def on_connect(client, userdata, flags, rc):
if rc == 0:
print("Connected to MQTT Broker!")
2022-10-18 20:38:02 +00:00
2022-10-18 21:02:28 +00:00
global Connected #Use global variable
Connected = True #Signal connection
else:
print("Failed to connect, return code %d\n", rc)
2022-10-18 20:38:02 +00:00
2022-10-18 21:00:28 +00:00
def on_message(client, userdata, msg):
2022-10-19 08:48:51 +00:00
if msg.topic == "openWB/pv/W":
line = 0
elif msg.topic == "openWB/global/WHouseConsumption":
line = 15
elif msg.topic == "openWB/evu/W":
line = 30
elif msg.topic == "openWB/housebattery/%Soc":
line = 45
elif msg.topic == "openWB/housebattery/W":
line = 60
2022-10-19 08:53:53 +00:00
print(line)
2022-10-19 13:12:06 +00:00
values_draw.rectangle((150, line, 220, 50), fill = 255)
2022-10-19 12:53:13 +00:00
values_draw.text((150, line), msg.payload.decode(), font = font10, fill = 0)
epd.DisplayPartial(epd.getbuffer(values_image))
2022-10-19 13:14:24 +00:00
time.sleep(1)
2022-10-19 08:48:51 +00:00
#print(f"`{msg.topic}`: `{msg.payload.decode()}`")
2022-10-18 21:00:28 +00:00
Connected = False #global variable for the state of the connection
2022-10-18 20:38:02 +00:00
2022-10-18 21:04:02 +00:00
broker = "192.168.99.224"
2022-10-19 06:48:52 +00:00
port = 1883
2022-10-19 07:07:32 +00:00
topic_wHouseConsumption = "openWB/global/WHouseConsumption"
topic_pvProduction = "openWB/pv/W"
topic_energyImportExport = "openWB/evu/W"
topic_houseBatterySoC = "openWB/housebattery/%Soc"
topic_houseBatteryLoadUnload = "openWB/housebattery/W"
2022-10-18 21:00:28 +00:00
username = "mqtt-user"
2022-10-19 06:40:32 +00:00
pw = "phio6yiR9ohs1veeghu4WaeGhaiRi8he4EiWasheev4faeku8tohdiuthah7zahP"
2022-10-18 21:00:28 +00:00
client_id = "solarmonitor"
2022-10-18 20:38:02 +00:00
2022-10-19 06:40:32 +00:00
client = mqtt_client.Client(client_id, protocol=paho.MQTTv31)
client.username_pw_set(username, password=pw)
2022-10-18 21:00:28 +00:00
client.on_connect = on_connect
client.on_message = on_message
2022-10-18 20:38:02 +00:00
2022-10-19 06:40:32 +00:00
client.connect(broker, port=port)
2022-10-18 20:38:02 +00:00
2022-10-18 21:00:28 +00:00
client.loop_start() #start the loop
while Connected != True: #Wait for connection
2022-10-19 06:44:21 +00:00
time.sleep(1)
2022-10-18 20:38:02 +00:00
2022-10-19 07:07:32 +00:00
client.subscribe(topic_wHouseConsumption)
client.subscribe(topic_pvProduction)
client.subscribe(topic_energyImportExport)
client.subscribe(topic_houseBatterySoC)
2022-10-19 07:08:47 +00:00
client.subscribe(topic_houseBatteryLoadUnload)
2022-10-18 20:38:02 +00:00
2022-10-18 21:00:28 +00:00
try:
while True:
time.sleep(1)
2022-10-19 07:11:48 +00:00
print("-----")
2022-10-18 21:00:28 +00:00
except KeyboardInterrupt:
2022-10-18 21:01:15 +00:00
print("exiting")
2022-10-18 21:00:28 +00:00
client.disconnect()
client.loop_stop()