e-paper-display/examples/solarmonitor-colored.py

158 lines
5.8 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 18:00:22 +00:00
from waveshare_epd import epd2in13b_V3
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
2022-10-19 19:25:00 +00:00
logging.basicConfig(level=logging.INFO)
2022-10-18 20:38:02 +00:00
2022-10-19 14:46:39 +00:00
Connected = False #global variable for the state of the connection
broker = "192.168.99.224"
port = 1883
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"
username = "mqtt-user"
pw = "phio6yiR9ohs1veeghu4WaeGhaiRi8he4EiWasheev4faeku8tohdiuthah7zahP"
client_id = "solarmonitor"
2022-10-19 07:21:28 +00:00
try:
2022-10-19 18:00:22 +00:00
epd = epd2in13b_V3.EPD()
2022-10-19 19:25:00 +00:00
logging.debug("init and Clear")
2022-10-19 11:19:34 +00:00
epd.init()
epd.Clear()
2022-10-19 19:25:00 +00:00
#time.sleep(1)
2022-10-19 07:21:28 +00:00
except IOError as e:
logging.info(e)
except KeyboardInterrupt:
logging.info("ctrl + c:")
2022-10-19 19:25:00 +00:00
epd.Clear()
2022-10-19 18:00:22 +00:00
epd2in13b_V3.epdconfig.module_exit()
2022-10-19 07:21:28 +00:00
exit()
2022-10-18 21:02:28 +00:00
def on_connect(client, userdata, flags, rc):
if rc == 0:
2022-10-19 19:25:00 +00:00
logging.info("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:
2022-10-19 19:25:00 +00:00
logging.debug("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 15:49:14 +00:00
global value_pvProduction
global value_wHouseConsumption
global value_energyImportExport
global value_houseBatterySoC
global value_houseBatteryLoadUnload
2022-10-19 15:40:16 +00:00
2022-10-19 08:48:51 +00:00
if msg.topic == "openWB/pv/W":
2022-10-19 19:07:55 +00:00
value_pvProduction = int(msg.payload.decode())
2022-10-20 07:15:31 +00:00
value_pvProduction = -value_pvProduction
2022-10-19 08:48:51 +00:00
elif msg.topic == "openWB/global/WHouseConsumption":
2022-10-19 19:07:55 +00:00
value_wHouseConsumption = int(msg.payload.decode())
2022-10-19 08:48:51 +00:00
elif msg.topic == "openWB/evu/W":
2022-10-19 19:07:55 +00:00
value_energyImportExport = int(msg.payload.decode())
2022-10-19 08:48:51 +00:00
elif msg.topic == "openWB/housebattery/%Soc":
2022-10-19 19:07:55 +00:00
value_houseBatterySoC = int(msg.payload.decode())
2022-10-19 14:41:11 +00:00
elif msg.topic == "openWB/housebattery/W":
2022-10-19 19:07:55 +00:00
value_houseBatteryLoadUnload = int(msg.payload.decode())
2022-10-18 21:00:28 +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
2022-10-19 15:46:36 +00:00
2022-10-19 19:07:55 +00:00
value_pvProduction = 0
value_wHouseConsumption = 0
value_energyImportExport = 0
value_houseBatterySoC = 0
value_houseBatteryLoadUnload = 0
2022-10-19 15:54:40 +00:00
2022-10-18 21:00:28 +00:00
client.on_message = on_message
2022-10-19 14:44:00 +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 21:00:28 +00:00
try:
while True:
2022-10-19 19:25:00 +00:00
logging.debug("Drawing")
2022-10-20 11:48:25 +00:00
font16 = ImageFont.truetype(os.path.join(picdir, 'Font.ttc'), 16)
2022-10-19 17:51:26 +00:00
HBlackimage = Image.new('1', (epd.height, epd.width), 255) # 298*126
HRedimage = Image.new('1', (epd.height, epd.width), 255) # 298*126 ryimage: red or yellow image
drawblack = ImageDraw.Draw(HBlackimage)
drawred = ImageDraw.Draw(HRedimage)
2022-10-20 11:48:25 +00:00
drawblack.text((5, 0), 'PV Produktion', font = font16, fill = 0)
2022-10-19 19:29:50 +00:00
if value_pvProduction < value_wHouseConsumption:
2022-10-20 11:48:25 +00:00
drawred.text((5, 20), 'Hausverbrauch', font = font16, fill = 0)
2022-10-19 19:29:50 +00:00
else:
2022-10-20 11:48:25 +00:00
drawblack.text((5, 20), 'Hausverbrauch', font = font16, fill = 0)
2022-10-19 19:04:43 +00:00
if value_energyImportExport > 0:
2022-10-20 11:53:22 +00:00
drawred.text((7, 40), 'Strom Import', font = font16, fill = 0)
2022-10-19 19:04:43 +00:00
else:
2022-10-20 11:53:22 +00:00
drawblack.text((7, 40), 'Strom Export', font = font16, fill = 0)
2022-10-19 19:04:43 +00:00
2022-10-20 11:48:25 +00:00
drawblack.text((5, 60), 'Batterie', font = font16, fill = 0)
2022-10-19 19:16:13 +00:00
if value_houseBatteryLoadUnload > 0:
2022-10-20 11:48:25 +00:00
drawblack.text((5, 80), 'Batterie Laden', font = font16, fill = 0)
elif value_houseBatteryLoadUnload < 0:
drawred.text((5, 80), 'Batterie Entladen', font = font16, fill = 0)
2022-10-19 19:16:13 +00:00
else:
2022-10-20 11:57:13 +00:00
drawblack.text((5, 80), 'Batterie', font = font16, fill = 0)
2022-10-19 19:25:00 +00:00
2022-10-19 19:30:32 +00:00
logging.info("-----")
2022-10-20 07:15:31 +00:00
logging.info("PvProd: "+str(value_pvProduction))
2022-10-19 19:33:21 +00:00
logging.info("HouseU: "+str(value_wHouseConsumption))
logging.info("EneI/E: "+str(value_energyImportExport))
logging.info("BatSoC: "+str(value_houseBatterySoC))
logging.info("BatI/O: "+str(value_houseBatteryLoadUnload))
2022-10-20 11:48:25 +00:00
drawblack.text((150, 0), str(value_pvProduction) + " W", font = font16, fill = 0)
2022-10-19 19:29:50 +00:00
if value_pvProduction < value_wHouseConsumption:
2022-10-20 11:48:25 +00:00
drawred.text((150, 20), str(value_wHouseConsumption) + " W", font = font16, fill = 0)
2022-10-19 19:29:50 +00:00
else:
2022-10-20 11:48:25 +00:00
drawblack.text((150, 20), str(value_wHouseConsumption) + " W", font = font16, fill = 0)
2022-10-19 19:04:43 +00:00
if value_energyImportExport > 0:
2022-10-20 11:48:25 +00:00
drawred.text((150, 40), str(value_energyImportExport) + " W", font = font16, fill = 0)
2022-10-19 19:04:43 +00:00
else:
2022-10-20 11:53:22 +00:00
drawblack.text((150, 40), str(-value_energyImportExport) + " W", font = font16, fill = 0)
2022-10-20 11:48:25 +00:00
drawblack.text((150, 60), str(value_houseBatterySoC) + " %", font = font16, fill = 0)
2022-10-20 11:57:13 +00:00
if value_houseBatteryLoadUnload >= 0:
2022-10-20 11:48:25 +00:00
drawblack.text((150, 80), str(value_houseBatteryLoadUnload) + " W", font = font16, fill = 0)
2022-10-19 19:16:13 +00:00
else:
2022-10-20 11:48:25 +00:00
drawred.text((150, 80), str(value_houseBatteryLoadUnload) + " W", font = font16, fill = 0)
2022-10-19 19:16:13 +00:00
2022-10-19 17:43:32 +00:00
epd.display(epd.getbuffer(HBlackimage), epd.getbuffer(HRedimage))
2022-10-19 17:51:26 +00:00
time.sleep(10)
2022-10-18 21:00:28 +00:00
except KeyboardInterrupt:
2022-10-19 19:25:00 +00:00
logging.info("exiting")
2022-10-18 21:00:28 +00:00
client.disconnect()
client.loop_stop()