From a9145bf07547bff728130bea7a44f84cc88b7bc2 Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Sun, 6 Sep 2020 13:38:47 +0200 Subject: [PATCH] Initial Smarthome GUI Client --- .gitignore | 6 + .gitmodules | 24 +++ .project | 17 ++ .pydevproject | 8 + garage_protocol | 1 + report | 1 + rpi_envsens | 1 + socket_protocol | 1 + stringtools | 1 + task | 1 + tcp_socket | 1 + wetation.py | 206 ++++++++++++++++++++++ wetation.wxg | 434 ++++++++++++++++++++++++++++++++++++++++++++++ wetation_protocol | 1 + 14 files changed, 703 insertions(+) create mode 100644 .gitmodules create mode 100644 .project create mode 100644 .pydevproject create mode 160000 garage_protocol create mode 160000 report create mode 160000 rpi_envsens create mode 160000 socket_protocol create mode 160000 stringtools create mode 160000 task create mode 160000 tcp_socket create mode 100644 wetation.py create mode 100644 wetation.wxg create mode 160000 wetation_protocol diff --git a/.gitignore b/.gitignore index e61bca2..c65eeac 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,9 @@ +config.py +.settings +*~ +messages.* + + # ---> Python # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..035103f --- /dev/null +++ b/.gitmodules @@ -0,0 +1,24 @@ +[submodule "socket_protocol"] + path = socket_protocol + url = https://git.mount-mockery.de/pylib/socket_protocol.git +[submodule "tcp_socket"] + path = tcp_socket + url = https://git.mount-mockery.de/pylib/tcp_socket.git +[submodule "protocol"] + path = wetation_protocol + url = https://git.mount-mockery.de/application/wetation_protocol.git +[submodule "report"] + path = report + url = https://git.mount-mockery.de/pylib/report.git +[submodule "stringtools"] + path = stringtools + url = https://git.mount-mockery.de/pylib/stringtools.git +[submodule "task"] + path = task + url = https://git.mount-mockery.de/pylib/task.git +[submodule "rpi_envsens"] + path = rpi_envsens + url = https://git.mount-mockery.de/pylib/rpi_envsens.git +[submodule "garage_protocol"] + path = garage_protocol + url = https://git.mount-mockery.de/application/garage_protocol.git diff --git a/.project b/.project new file mode 100644 index 0000000..0d15ad4 --- /dev/null +++ b/.project @@ -0,0 +1,17 @@ + + + wetation_gui + + + + + + org.python.pydev.PyDevBuilder + + + + + + org.python.pydev.pythonNature + + diff --git a/.pydevproject b/.pydevproject new file mode 100644 index 0000000..aa7a29a --- /dev/null +++ b/.pydevproject @@ -0,0 +1,8 @@ + + + + /${PROJECT_DIR_NAME} + + python interpreter + Default + diff --git a/garage_protocol b/garage_protocol new file mode 160000 index 0000000..88c3b56 --- /dev/null +++ b/garage_protocol @@ -0,0 +1 @@ +Subproject commit 88c3b5676f0f670e1b68bb327d844e9d67dddda6 diff --git a/report b/report new file mode 160000 index 0000000..ce17433 --- /dev/null +++ b/report @@ -0,0 +1 @@ +Subproject commit ce174339bc61a57dbb1c152f329d01ec4a5e1040 diff --git a/rpi_envsens b/rpi_envsens new file mode 160000 index 0000000..fd86c70 --- /dev/null +++ b/rpi_envsens @@ -0,0 +1 @@ +Subproject commit fd86c70c83f75bcbbfc60ed69a99252bd7fb62b9 diff --git a/socket_protocol b/socket_protocol new file mode 160000 index 0000000..b0857e4 --- /dev/null +++ b/socket_protocol @@ -0,0 +1 @@ +Subproject commit b0857e4569c34b9b644f5640731be0c413ce54d4 diff --git a/stringtools b/stringtools new file mode 160000 index 0000000..d5f9931 --- /dev/null +++ b/stringtools @@ -0,0 +1 @@ +Subproject commit d5f9931bcab942ac84d8f09b1559995da0d2676c diff --git a/task b/task new file mode 160000 index 0000000..d3fbc59 --- /dev/null +++ b/task @@ -0,0 +1 @@ +Subproject commit d3fbc5934051ab165723ca37e8f02596329f174a diff --git a/tcp_socket b/tcp_socket new file mode 160000 index 0000000..62f13e2 --- /dev/null +++ b/tcp_socket @@ -0,0 +1 @@ +Subproject commit 62f13e2d878b09b81d094c2f77dbd830d72be2c7 diff --git a/wetation.py b/wetation.py new file mode 100644 index 0000000..9406c62 --- /dev/null +++ b/wetation.py @@ -0,0 +1,206 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- +# +# generated by wxGlade 0.9.4 on Fri Sep 4 13:21:47 2020 +# + +import wx + +import config +import logging +import os + +import time +import garage_protocol +import wetation_protocol +import report +import tcp_socket +import task +from config import FULL_SCRREN + +# begin wxGlade: dependencies +# end wxGlade + +# begin wxGlade: extracode +# end wxGlade + + +class Wetation(wx.Frame): + def __init__(self, *args, **kwds): + # begin wxGlade: Wetation.__init__ + kwds["style"] = kwds.get("style", 0) | wx.DEFAULT_FRAME_STYLE + wx.Frame.__init__(self, *args, **kwds) + self.SetSize((800, 600)) + self.garage_oc = wx.Button(self, wx.ID_ANY, "Garage") + self.gate_position = wx.Slider(self, wx.ID_ANY, 0, 0, 100) + + self.__set_properties() + self.__do_layout() + + self.Bind(wx.EVT_BUTTON, self.garage_oc_evt, self.garage_oc) + # end wxGlade + self.ShowFullScreen(FULL_SCRREN) + + def __set_properties(self): + # begin wxGlade: Wetation.__set_properties + self.SetTitle("frame") + self.SetBackgroundColour(wx.Colour(250, 249, 255)) + self.SetForegroundColour(wx.Colour(35, 35, 142)) + self.gate_position.Enable(False) + # end wxGlade + + def __do_layout(self): + # begin wxGlade: Wetation.__do_layout + sizer_main = wx.BoxSizer(wx.VERTICAL) + sizer_8 = wx.BoxSizer(wx.HORIZONTAL) + sizer_env_data_in = wx.BoxSizer(wx.HORIZONTAL) + sizer_9 = wx.BoxSizer(wx.VERTICAL) + sizer_5 = wx.BoxSizer(wx.VERTICAL) + sizer_env_data_out = wx.BoxSizer(wx.HORIZONTAL) + sizer_7 = wx.BoxSizer(wx.VERTICAL) + sizer_4 = wx.BoxSizer(wx.VERTICAL) + sizer_date_time = wx.BoxSizer(wx.HORIZONTAL) + spacer_1 = wx.StaticText(self, wx.ID_ANY, "") + spacer_1.SetBackgroundColour(wx.Colour(35, 35, 142)) + spacer_1.SetFont(wx.Font(5, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "")) + sizer_main.Add(spacer_1, 0, wx.EXPAND, 0) + date = wx.StaticText(self, wx.ID_ANY, "xx.xx.xxxx", style=wx.ALIGN_LEFT) + date.SetBackgroundColour(wx.Colour(35, 35, 142)) + date.SetForegroundColour(wx.Colour(255, 255, 255)) + date.SetFont(wx.Font(24, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "")) + sizer_date_time.Add(date, 1, wx.EXPAND | wx.LEFT, 0) + time = wx.StaticText(self, wx.ID_ANY, "xx:xx", style=wx.ALIGN_RIGHT) + time.SetBackgroundColour(wx.Colour(35, 35, 142)) + time.SetForegroundColour(wx.Colour(255, 255, 255)) + time.SetFont(wx.Font(24, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "")) + sizer_date_time.Add(time, 1, wx.EXPAND | wx.RIGHT, 0) + sizer_main.Add(sizer_date_time, 0, wx.EXPAND, 0) + spacer_2 = wx.StaticText(self, wx.ID_ANY, "") + spacer_2.SetBackgroundColour(wx.Colour(35, 35, 142)) + spacer_2.SetFont(wx.Font(5, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "")) + sizer_main.Add(spacer_2, 0, wx.EXPAND, 0) + spacer_3 = wx.StaticText(self, wx.ID_ANY, u"Außentemperatur") + spacer_3.SetBackgroundColour(wx.Colour(0, 0, 0)) + spacer_3.SetForegroundColour(wx.Colour(250, 249, 255)) + spacer_3.SetFont(wx.Font(12, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "")) + sizer_main.Add(spacer_3, 0, wx.EXPAND, 0) + out_humidity = wx.StaticText(self, wx.ID_ANY, "- %", style=wx.ALIGN_RIGHT) + out_humidity.SetFont(wx.Font(24, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "")) + sizer_4.Add(out_humidity, 1, wx.ALIGN_RIGHT | wx.EXPAND | wx.RIGHT, 0) + out_pressure = wx.StaticText(self, wx.ID_ANY, "- mbar", style=wx.ALIGN_RIGHT) + out_pressure.SetFont(wx.Font(24, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "")) + sizer_4.Add(out_pressure, 1, wx.ALIGN_RIGHT | wx.EXPAND | wx.RIGHT, 0) + sizer_env_data_out.Add(sizer_4, 1, wx.EXPAND, 0) + out_temperature_min = wx.StaticText(self, wx.ID_ANY, u"-.- °C", style=wx.ALIGN_RIGHT) + out_temperature_min.SetFont(wx.Font(24, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "")) + sizer_7.Add(out_temperature_min, 1, wx.ALIGN_RIGHT | wx.EXPAND | wx.RIGHT, 0) + out_temperature_max = wx.StaticText(self, wx.ID_ANY, u"-.- °C", style=wx.ALIGN_RIGHT) + out_temperature_max.SetFont(wx.Font(24, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "")) + sizer_7.Add(out_temperature_max, 1, wx.ALIGN_RIGHT | wx.EXPAND | wx.RIGHT, 0) + sizer_env_data_out.Add(sizer_7, 1, wx.EXPAND, 0) + sizer_env_data_out.Add((50, 20), 0, 0, 0) + out_temperature = wx.StaticText(self, wx.ID_ANY, u"-.- °C", style=wx.ALIGN_RIGHT) + out_temperature.SetFont(wx.Font(48, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "")) + sizer_env_data_out.Add(out_temperature, 2, wx.ALIGN_RIGHT | wx.RIGHT, 0) + sizer_main.Add(sizer_env_data_out, 0, wx.EXPAND, 0) + spacer_4 = wx.StaticText(self, wx.ID_ANY, "Innentemperatur") + spacer_4.SetBackgroundColour(wx.Colour(0, 0, 0)) + spacer_4.SetForegroundColour(wx.Colour(250, 249, 255)) + spacer_4.SetFont(wx.Font(12, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "")) + sizer_main.Add(spacer_4, 0, wx.EXPAND, 0) + in_humidity = wx.StaticText(self, wx.ID_ANY, "- %", style=wx.ALIGN_RIGHT) + in_humidity.SetFont(wx.Font(24, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "")) + sizer_5.Add(in_humidity, 1, wx.ALIGN_RIGHT | wx.EXPAND | wx.RIGHT, 0) + in_pressure = wx.StaticText(self, wx.ID_ANY, "- mbar", style=wx.ALIGN_RIGHT) + in_pressure.SetFont(wx.Font(24, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "")) + sizer_5.Add(in_pressure, 1, wx.ALIGN_RIGHT | wx.EXPAND | wx.RIGHT, 0) + sizer_env_data_in.Add(sizer_5, 1, wx.EXPAND, 0) + in_temperature_min = wx.StaticText(self, wx.ID_ANY, u"-.- °C", style=wx.ALIGN_RIGHT) + in_temperature_min.SetFont(wx.Font(24, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "")) + sizer_9.Add(in_temperature_min, 1, wx.ALIGN_RIGHT | wx.EXPAND | wx.RIGHT, 0) + in_temperature_max = wx.StaticText(self, wx.ID_ANY, u"-.- °C", style=wx.ALIGN_RIGHT) + in_temperature_max.SetFont(wx.Font(24, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "")) + sizer_9.Add(in_temperature_max, 1, wx.ALIGN_RIGHT | wx.EXPAND | wx.RIGHT, 0) + sizer_env_data_in.Add(sizer_9, 1, wx.EXPAND, 0) + sizer_env_data_in.Add((50, 20), 0, 0, 0) + in_temperature = wx.StaticText(self, wx.ID_ANY, u"-.- °C", style=wx.ALIGN_RIGHT) + in_temperature.SetFont(wx.Font(48, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "")) + sizer_env_data_in.Add(in_temperature, 2, wx.ALIGN_RIGHT | wx.RIGHT, 0) + sizer_main.Add(sizer_env_data_in, 0, wx.EXPAND, 0) + sizer_main.Add((10, 10), 1, 0, 0) + spacer_5 = wx.StaticText(self, wx.ID_ANY, "Garage") + spacer_5.SetBackgroundColour(wx.Colour(0, 0, 0)) + spacer_5.SetForegroundColour(wx.Colour(250, 249, 255)) + spacer_5.SetFont(wx.Font(12, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, 0, "")) + sizer_main.Add(spacer_5, 0, wx.EXPAND, 0) + sizer_8.Add(self.garage_oc, 0, 0, 0) + gate__open = wx.StaticText(self, wx.ID_ANY, "Close") + sizer_8.Add(gate__open, 0, wx.ALIGN_CENTER, 0) + sizer_8.Add(self.gate_position, 1, wx.EXPAND, 0) + gate_open = wx.StaticText(self, wx.ID_ANY, "Open") + sizer_8.Add(gate_open, 0, wx.ALIGN_CENTER, 0) + sizer_main.Add(sizer_8, 0, wx.EXPAND, 0) + self.SetSizer(sizer_main) + self.Layout() + # end wxGlade + self.date = date + self.time = time + # + self.out_humidity = out_humidity + self.out_pressure = out_pressure + + self.out_temperature = out_temperature + self.out_temperature_min = out_temperature_min + self.out_temperature_max = out_temperature_max + # + self.in_humidity = in_humidity + self.in_pressure = in_pressure + + self.in_temperature = in_temperature + + def garage_oc_evt(self, event): # wxGlade: Wetation. + self.prot_garage.send(prot_garage.SID_EXECUTE_REQUEST, prot_garage.OPEN_CLOSE_GATE, None) + event.Skip() +# end of class Wetation + +class MyApp(wx.App): + def OnInit(self): + self.frame = Wetation(None, wx.ID_ANY, "") + self.SetTopWindow(self.frame) + self.frame.Show() + return True + +# end of class MyApp + +def initiate_update(rt, frame, prot_out, prot_in, prot_garage): + prot_out.send(wetation_protocol.my_base_protocol_tcp.SID_READ_REQUEST, wetation_protocol.my_base_protocol_tcp.CURRENT_ENVDATA, None) + prot_in.send(wetation_protocol.my_base_protocol_tcp.SID_READ_REQUEST, wetation_protocol.my_base_protocol_tcp.CURRENT_ENVDATA, None) + prot_garage.send(garage_protocol.my_base_protocol_tcp.SID_READ_REQUEST, garage_protocol.my_base_protocol_tcp.GATE_POSITION, None) + wx.CallAfter(frame.time.SetLabel, time.strftime("%H:%M")) + wx.CallAfter(frame.date.SetLabel, time.strftime("%d.%m.%Y")) + wx.CallAfter(frame.Layout) + + + +if __name__ == "__main__": + report.appLoggingConfigure(os.path.dirname(__file__), 'stdout', config.loggers) + # + app = MyApp(0) + # + # Start TCP-Clients + c_tcp = tcp_socket.tcp_client_stp(config.server_out_ip, config.server_out_port, rx_log_lvl=logging.DEBUG) + prot_out = wetation_protocol.my_smarthome_gui_client_protocol_tcp(c_tcp, app.frame.out_temperature, app.frame.out_humidity, app.frame.out_pressure, app.frame.Layout, config.server_out_secret) + c_tcp = tcp_socket.tcp_client_stp(config.server_in_ip, config.server_in_port, rx_log_lvl=logging.DEBUG) + prot_in = wetation_protocol.my_smarthome_gui_client_protocol_tcp(c_tcp, app.frame.in_temperature, app.frame.in_humidity, app.frame.in_pressure, app.frame.Layout, config.server_in_secret) + c_tcp = tcp_socket.tcp_client_stp(config.server_garage_ip, config.server_garage_port, rx_log_lvl=logging.DEBUG) + prot_garage = garage_protocol.my_smarthome_gui_client_protocol_tcp(c_tcp, app.frame.gate_position, app.frame.Layout, config.server_garage_secret) + prot_garage.authentificate() + app.frame.prot_garage = prot_garage + pt = task.periodic(10, initiate_update, app.frame, prot_out, prot_in, prot_garage) + pt.run() + app.MainLoop() + pt.stop() + try: + pt.join() + finally: + pt.stop() diff --git a/wetation.wxg b/wetation.wxg new file mode 100644 index 0000000..c44e1de --- /dev/null +++ b/wetation.wxg @@ -0,0 +1,434 @@ + + + + + + 800, 600 + #faf9ff + #23238e + frame + + + wxVERTICAL + + + 0 + wxEXPAND + + #23238e + + 5 + default + + normal + 0 + + + + + + + 0 + wxEXPAND + + wxHORIZONTAL + + + 0 + wxLEFT|wxEXPAND + + #23238e + #ffffff + + 24 + default + + normal + 0 + + + + + + + + + 0 + wxRIGHT|wxEXPAND + + #23238e + #ffffff + + 24 + default + + normal + 0 + + + + + + + + + + + 0 + wxEXPAND + + #23238e + + 5 + default + + normal + 0 + + + + + + + 0 + wxEXPAND + + #000000 + #faf9ff + + 12 + default + + normal + 0 + + + + + + + + 0 + wxEXPAND + + wxHORIZONTAL + + + 0 + wxEXPAND + + wxVERTICAL + + + 0 + wxRIGHT|wxEXPAND|wxALIGN_RIGHT + + + 24 + default + + normal + 0 + + + + + + + + + 0 + wxRIGHT|wxEXPAND|wxALIGN_RIGHT + + + 24 + default + + normal + 0 + + + + + + + + + + + 0 + wxEXPAND + + wxVERTICAL + + + 0 + wxRIGHT|wxEXPAND|wxALIGN_RIGHT + + + 24 + default + + normal + 0 + + + + + + + + + 0 + wxRIGHT|wxEXPAND|wxALIGN_RIGHT + + + 24 + default + + normal + 0 + + + + + + + + + + + 0 + + 50 + 20 + + + + + 0 + wxRIGHT|wxALIGN_RIGHT + + + 48 + default + + normal + 0 + + + + + + + + + + + 0 + wxEXPAND + + #000000 + #faf9ff + + 12 + default + + normal + 0 + + + + + + + + 0 + wxEXPAND + + wxHORIZONTAL + + + 0 + wxEXPAND + + wxVERTICAL + + + 0 + wxRIGHT|wxEXPAND|wxALIGN_RIGHT + + + 24 + default + + normal + 0 + + + + + + + + + 0 + wxRIGHT|wxEXPAND|wxALIGN_RIGHT + + + 24 + default + + normal + 0 + + + + + + + + + + + 0 + wxEXPAND + + wxVERTICAL + + + 0 + wxRIGHT|wxEXPAND|wxALIGN_RIGHT + + + 24 + default + + normal + 0 + + + + + + + + + 0 + wxRIGHT|wxEXPAND|wxALIGN_RIGHT + + + 24 + default + + normal + 0 + + + + + + + + + + + 0 + + 50 + 20 + + + + + 0 + wxRIGHT|wxALIGN_RIGHT + + + 48 + default + + normal + 0 + + + + + + + + + + + 0 + + 10 + 10 + + + + + 0 + wxEXPAND + + #000000 + #faf9ff + + 12 + default + + normal + 0 + + + + + + + + 0 + wxEXPAND + + wxHORIZONTAL + + + 0 + + + garage_oc_evt + + + + + + + 0 + wxALIGN_CENTER + + + + + + + 0 + wxEXPAND + + 1 + + 0, 100 + 0 + + + + + 0 + wxALIGN_CENTER + + + + + + + + + diff --git a/wetation_protocol b/wetation_protocol new file mode 160000 index 0000000..4a2f461 --- /dev/null +++ b/wetation_protocol @@ -0,0 +1 @@ +Subproject commit 4a2f461be4ac53984aded6e4b7d128f3fb5b0c39