Initial Smarthome GUI Client
This commit is contained in:
parent
104cc8e692
commit
a9145bf075
6
.gitignore
vendored
6
.gitignore
vendored
@ -1,3 +1,9 @@
|
|||||||
|
config.py
|
||||||
|
.settings
|
||||||
|
*~
|
||||||
|
messages.*
|
||||||
|
|
||||||
|
|
||||||
# ---> Python
|
# ---> Python
|
||||||
# Byte-compiled / optimized / DLL files
|
# Byte-compiled / optimized / DLL files
|
||||||
__pycache__/
|
__pycache__/
|
||||||
|
24
.gitmodules
vendored
Normal file
24
.gitmodules
vendored
Normal file
@ -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
|
17
.project
Normal file
17
.project
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<projectDescription>
|
||||||
|
<name>wetation_gui</name>
|
||||||
|
<comment></comment>
|
||||||
|
<projects>
|
||||||
|
</projects>
|
||||||
|
<buildSpec>
|
||||||
|
<buildCommand>
|
||||||
|
<name>org.python.pydev.PyDevBuilder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
|
</buildSpec>
|
||||||
|
<natures>
|
||||||
|
<nature>org.python.pydev.pythonNature</nature>
|
||||||
|
</natures>
|
||||||
|
</projectDescription>
|
8
.pydevproject
Normal file
8
.pydevproject
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<?eclipse-pydev version="1.0"?><pydev_project>
|
||||||
|
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
|
||||||
|
<path>/${PROJECT_DIR_NAME}</path>
|
||||||
|
</pydev_pathproperty>
|
||||||
|
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python interpreter</pydev_property>
|
||||||
|
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property>
|
||||||
|
</pydev_project>
|
1
garage_protocol
Submodule
1
garage_protocol
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 88c3b5676f0f670e1b68bb327d844e9d67dddda6
|
1
report
Submodule
1
report
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit ce174339bc61a57dbb1c152f329d01ec4a5e1040
|
1
rpi_envsens
Submodule
1
rpi_envsens
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit fd86c70c83f75bcbbfc60ed69a99252bd7fb62b9
|
1
socket_protocol
Submodule
1
socket_protocol
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit b0857e4569c34b9b644f5640731be0c413ce54d4
|
1
stringtools
Submodule
1
stringtools
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit d5f9931bcab942ac84d8f09b1559995da0d2676c
|
1
task
Submodule
1
task
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit d3fbc5934051ab165723ca37e8f02596329f174a
|
1
tcp_socket
Submodule
1
tcp_socket
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 62f13e2d878b09b81d094c2f77dbd830d72be2c7
|
206
wetation.py
Normal file
206
wetation.py
Normal file
@ -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.<event_handler>
|
||||||
|
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()
|
434
wetation.wxg
Normal file
434
wetation.wxg
Normal file
@ -0,0 +1,434 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!-- generated by wxGlade 0.9.3 on Sun Sep 6 13:22:17 2020 -->
|
||||||
|
|
||||||
|
<application class="MyApp" encoding="UTF-8" for_version="3.0" header_extension=".h" indent_amount="4" indent_symbol="space" is_template="0" language="python" mark_blocks="1" name="app" option="0" overwrite="0" path="./wetation.py" source_extension=".cpp" top_window="wetation" use_gettext="0" use_new_namespace="1">
|
||||||
|
<object class="Wetation" name="wetation" base="EditFrame">
|
||||||
|
<size>800, 600</size>
|
||||||
|
<background>#faf9ff</background>
|
||||||
|
<foreground>#23238e</foreground>
|
||||||
|
<title>frame</title>
|
||||||
|
<style>wxDEFAULT_FRAME_STYLE</style>
|
||||||
|
<object class="wxBoxSizer" name="sizer_main" base="EditBoxSizer">
|
||||||
|
<orient>wxVERTICAL</orient>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>0</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxEXPAND</flag>
|
||||||
|
<object class="wxStaticText" name="spacer_1" base="EditStaticText">
|
||||||
|
<background>#23238e</background>
|
||||||
|
<font>
|
||||||
|
<size>5</size>
|
||||||
|
<family>default</family>
|
||||||
|
<style>normal</style>
|
||||||
|
<weight>normal</weight>
|
||||||
|
<underlined>0</underlined>
|
||||||
|
<face />
|
||||||
|
</font>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>0</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxEXPAND</flag>
|
||||||
|
<object class="wxBoxSizer" name="sizer_date_time" base="EditBoxSizer">
|
||||||
|
<orient>wxHORIZONTAL</orient>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>1</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxLEFT|wxEXPAND</flag>
|
||||||
|
<object class="wxStaticText" name="date" base="EditStaticText">
|
||||||
|
<background>#23238e</background>
|
||||||
|
<foreground>#ffffff</foreground>
|
||||||
|
<font>
|
||||||
|
<size>24</size>
|
||||||
|
<family>default</family>
|
||||||
|
<style>normal</style>
|
||||||
|
<weight>normal</weight>
|
||||||
|
<underlined>0</underlined>
|
||||||
|
<face />
|
||||||
|
</font>
|
||||||
|
<style>wxALIGN_LEFT</style>
|
||||||
|
<label>xx.xx.xxxx</label>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>1</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxRIGHT|wxEXPAND</flag>
|
||||||
|
<object class="wxStaticText" name="time" base="EditStaticText">
|
||||||
|
<background>#23238e</background>
|
||||||
|
<foreground>#ffffff</foreground>
|
||||||
|
<font>
|
||||||
|
<size>24</size>
|
||||||
|
<family>default</family>
|
||||||
|
<style>normal</style>
|
||||||
|
<weight>normal</weight>
|
||||||
|
<underlined>0</underlined>
|
||||||
|
<face />
|
||||||
|
</font>
|
||||||
|
<style>wxALIGN_RIGHT</style>
|
||||||
|
<label>xx:xx</label>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>0</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxEXPAND</flag>
|
||||||
|
<object class="wxStaticText" name="spacer_2" base="EditStaticText">
|
||||||
|
<background>#23238e</background>
|
||||||
|
<font>
|
||||||
|
<size>5</size>
|
||||||
|
<family>default</family>
|
||||||
|
<style>normal</style>
|
||||||
|
<weight>normal</weight>
|
||||||
|
<underlined>0</underlined>
|
||||||
|
<face />
|
||||||
|
</font>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>0</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxEXPAND</flag>
|
||||||
|
<object class="wxStaticText" name="spacer_3" base="EditStaticText">
|
||||||
|
<background>#000000</background>
|
||||||
|
<foreground>#faf9ff</foreground>
|
||||||
|
<font>
|
||||||
|
<size>12</size>
|
||||||
|
<family>default</family>
|
||||||
|
<style>normal</style>
|
||||||
|
<weight>normal</weight>
|
||||||
|
<underlined>0</underlined>
|
||||||
|
<face />
|
||||||
|
</font>
|
||||||
|
<label>Außentemperatur</label>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>0</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxEXPAND</flag>
|
||||||
|
<object class="wxBoxSizer" name="sizer_env_data_out" base="EditBoxSizer">
|
||||||
|
<orient>wxHORIZONTAL</orient>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>1</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxEXPAND</flag>
|
||||||
|
<object class="wxBoxSizer" name="sizer_4" base="EditBoxSizer">
|
||||||
|
<orient>wxVERTICAL</orient>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>1</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxRIGHT|wxEXPAND|wxALIGN_RIGHT</flag>
|
||||||
|
<object class="wxStaticText" name="out_humidity" base="EditStaticText">
|
||||||
|
<font>
|
||||||
|
<size>24</size>
|
||||||
|
<family>default</family>
|
||||||
|
<style>normal</style>
|
||||||
|
<weight>normal</weight>
|
||||||
|
<underlined>0</underlined>
|
||||||
|
<face />
|
||||||
|
</font>
|
||||||
|
<style>wxALIGN_RIGHT</style>
|
||||||
|
<label>- %</label>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>1</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxRIGHT|wxEXPAND|wxALIGN_RIGHT</flag>
|
||||||
|
<object class="wxStaticText" name="out_pressure" base="EditStaticText">
|
||||||
|
<font>
|
||||||
|
<size>24</size>
|
||||||
|
<family>default</family>
|
||||||
|
<style>normal</style>
|
||||||
|
<weight>normal</weight>
|
||||||
|
<underlined>0</underlined>
|
||||||
|
<face />
|
||||||
|
</font>
|
||||||
|
<style>wxALIGN_RIGHT</style>
|
||||||
|
<label>- mbar</label>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>1</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxEXPAND</flag>
|
||||||
|
<object class="wxBoxSizer" name="sizer_7" base="EditBoxSizer">
|
||||||
|
<orient>wxVERTICAL</orient>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>1</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxRIGHT|wxEXPAND|wxALIGN_RIGHT</flag>
|
||||||
|
<object class="wxStaticText" name="out_temperature_min" base="EditStaticText">
|
||||||
|
<font>
|
||||||
|
<size>24</size>
|
||||||
|
<family>default</family>
|
||||||
|
<style>normal</style>
|
||||||
|
<weight>normal</weight>
|
||||||
|
<underlined>0</underlined>
|
||||||
|
<face />
|
||||||
|
</font>
|
||||||
|
<style>wxALIGN_RIGHT</style>
|
||||||
|
<label>-.- °C</label>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>1</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxRIGHT|wxEXPAND|wxALIGN_RIGHT</flag>
|
||||||
|
<object class="wxStaticText" name="out_temperature_max" base="EditStaticText">
|
||||||
|
<font>
|
||||||
|
<size>24</size>
|
||||||
|
<family>default</family>
|
||||||
|
<style>normal</style>
|
||||||
|
<weight>normal</weight>
|
||||||
|
<underlined>0</underlined>
|
||||||
|
<face />
|
||||||
|
</font>
|
||||||
|
<style>wxALIGN_RIGHT</style>
|
||||||
|
<label>-.- °C</label>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>0</option>
|
||||||
|
<border>0</border>
|
||||||
|
<object class="spacer" name="spacer" base="EditSpacer">
|
||||||
|
<width>50</width>
|
||||||
|
<height>20</height>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>2</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxRIGHT|wxALIGN_RIGHT</flag>
|
||||||
|
<object class="wxStaticText" name="out_temperature" base="EditStaticText">
|
||||||
|
<font>
|
||||||
|
<size>48</size>
|
||||||
|
<family>default</family>
|
||||||
|
<style>normal</style>
|
||||||
|
<weight>normal</weight>
|
||||||
|
<underlined>0</underlined>
|
||||||
|
<face />
|
||||||
|
</font>
|
||||||
|
<style>wxALIGN_RIGHT</style>
|
||||||
|
<label>-.- °C</label>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>0</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxEXPAND</flag>
|
||||||
|
<object class="wxStaticText" name="spacer_4" base="EditStaticText">
|
||||||
|
<background>#000000</background>
|
||||||
|
<foreground>#faf9ff</foreground>
|
||||||
|
<font>
|
||||||
|
<size>12</size>
|
||||||
|
<family>default</family>
|
||||||
|
<style>normal</style>
|
||||||
|
<weight>normal</weight>
|
||||||
|
<underlined>0</underlined>
|
||||||
|
<face />
|
||||||
|
</font>
|
||||||
|
<label>Innentemperatur</label>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>0</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxEXPAND</flag>
|
||||||
|
<object class="wxBoxSizer" name="sizer_env_data_in" base="EditBoxSizer">
|
||||||
|
<orient>wxHORIZONTAL</orient>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>1</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxEXPAND</flag>
|
||||||
|
<object class="wxBoxSizer" name="sizer_5" base="EditBoxSizer">
|
||||||
|
<orient>wxVERTICAL</orient>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>1</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxRIGHT|wxEXPAND|wxALIGN_RIGHT</flag>
|
||||||
|
<object class="wxStaticText" name="in_humidity" base="EditStaticText">
|
||||||
|
<font>
|
||||||
|
<size>24</size>
|
||||||
|
<family>default</family>
|
||||||
|
<style>normal</style>
|
||||||
|
<weight>normal</weight>
|
||||||
|
<underlined>0</underlined>
|
||||||
|
<face />
|
||||||
|
</font>
|
||||||
|
<style>wxALIGN_RIGHT</style>
|
||||||
|
<label>- %</label>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>1</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxRIGHT|wxEXPAND|wxALIGN_RIGHT</flag>
|
||||||
|
<object class="wxStaticText" name="in_pressure" base="EditStaticText">
|
||||||
|
<font>
|
||||||
|
<size>24</size>
|
||||||
|
<family>default</family>
|
||||||
|
<style>normal</style>
|
||||||
|
<weight>normal</weight>
|
||||||
|
<underlined>0</underlined>
|
||||||
|
<face />
|
||||||
|
</font>
|
||||||
|
<style>wxALIGN_RIGHT</style>
|
||||||
|
<label>- mbar</label>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>1</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxEXPAND</flag>
|
||||||
|
<object class="wxBoxSizer" name="sizer_9" base="EditBoxSizer">
|
||||||
|
<orient>wxVERTICAL</orient>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>1</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxRIGHT|wxEXPAND|wxALIGN_RIGHT</flag>
|
||||||
|
<object class="wxStaticText" name="in_temperature_min" base="EditStaticText">
|
||||||
|
<font>
|
||||||
|
<size>24</size>
|
||||||
|
<family>default</family>
|
||||||
|
<style>normal</style>
|
||||||
|
<weight>normal</weight>
|
||||||
|
<underlined>0</underlined>
|
||||||
|
<face />
|
||||||
|
</font>
|
||||||
|
<style>wxALIGN_RIGHT</style>
|
||||||
|
<label>-.- °C</label>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>1</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxRIGHT|wxEXPAND|wxALIGN_RIGHT</flag>
|
||||||
|
<object class="wxStaticText" name="in_temperature_max" base="EditStaticText">
|
||||||
|
<font>
|
||||||
|
<size>24</size>
|
||||||
|
<family>default</family>
|
||||||
|
<style>normal</style>
|
||||||
|
<weight>normal</weight>
|
||||||
|
<underlined>0</underlined>
|
||||||
|
<face />
|
||||||
|
</font>
|
||||||
|
<style>wxALIGN_RIGHT</style>
|
||||||
|
<label>-.- °C</label>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>0</option>
|
||||||
|
<border>0</border>
|
||||||
|
<object class="spacer" name="spacer" base="EditSpacer">
|
||||||
|
<width>50</width>
|
||||||
|
<height>20</height>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>2</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxRIGHT|wxALIGN_RIGHT</flag>
|
||||||
|
<object class="wxStaticText" name="in_temperature" base="EditStaticText">
|
||||||
|
<font>
|
||||||
|
<size>48</size>
|
||||||
|
<family>default</family>
|
||||||
|
<style>normal</style>
|
||||||
|
<weight>normal</weight>
|
||||||
|
<underlined>0</underlined>
|
||||||
|
<face />
|
||||||
|
</font>
|
||||||
|
<style>wxALIGN_RIGHT</style>
|
||||||
|
<label>-.- °C</label>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>1</option>
|
||||||
|
<border>0</border>
|
||||||
|
<object class="spacer" name="spacer" base="EditSpacer">
|
||||||
|
<width>10</width>
|
||||||
|
<height>10</height>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>0</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxEXPAND</flag>
|
||||||
|
<object class="wxStaticText" name="spacer_5" base="EditStaticText">
|
||||||
|
<background>#000000</background>
|
||||||
|
<foreground>#faf9ff</foreground>
|
||||||
|
<font>
|
||||||
|
<size>12</size>
|
||||||
|
<family>default</family>
|
||||||
|
<style>normal</style>
|
||||||
|
<weight>normal</weight>
|
||||||
|
<underlined>0</underlined>
|
||||||
|
<face />
|
||||||
|
</font>
|
||||||
|
<label>Garage</label>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>0</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxEXPAND</flag>
|
||||||
|
<object class="wxBoxSizer" name="sizer_8" base="EditBoxSizer">
|
||||||
|
<orient>wxHORIZONTAL</orient>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>0</option>
|
||||||
|
<border>0</border>
|
||||||
|
<object class="wxButton" name="garage_oc" base="EditButton">
|
||||||
|
<events>
|
||||||
|
<handler event="EVT_BUTTON">garage_oc_evt</handler>
|
||||||
|
</events>
|
||||||
|
<label>Garage</label>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>0</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxALIGN_CENTER</flag>
|
||||||
|
<object class="wxStaticText" name="gate__open" base="EditStaticText">
|
||||||
|
<label>Close</label>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>1</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxEXPAND</flag>
|
||||||
|
<object class="wxSlider" name="gate_position" base="EditSlider">
|
||||||
|
<disabled>1</disabled>
|
||||||
|
<style>wxSL_HORIZONTAL</style>
|
||||||
|
<range>0, 100</range>
|
||||||
|
<value>0</value>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem">
|
||||||
|
<option>0</option>
|
||||||
|
<border>0</border>
|
||||||
|
<flag>wxALIGN_CENTER</flag>
|
||||||
|
<object class="wxStaticText" name="gate_open" base="EditStaticText">
|
||||||
|
<label>Open</label>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</application>
|
1
wetation_protocol
Submodule
1
wetation_protocol
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 4a2f461be4ac53984aded6e4b7d128f3fb5b0c39
|
Loading…
x
Reference in New Issue
Block a user