--- a/controls/PouInstanceVariablesPanel.py Thu Nov 03 17:43:30 2022 +0100
+++ b/controls/PouInstanceVariablesPanel.py Fri Nov 04 17:38:37 2022 +0100
@@ -174,6 +174,19 @@
self.DebugInstanceImage: _ButtonCallbacks(
self.DebugButtonCallback, self.DebugButtonDClickCallback)}
+ self.FilterCtrl = wx.SearchCtrl(self) + self.FilterCtrl.ShowCancelButton(True) + self.FilterCtrl.Bind(wx.EVT_TEXT, self.OnFilterUpdate) + self.FilterCtrl.Bind(wx.EVT_SEARCHCTRL_CANCEL_BTN, self.OnFilterCancel) + item = searchMenu.AppendCheckItem(-1, _("Match Case")) + self.Bind(wx.EVT_MENU, self.OnSearchMenu, item) + item = searchMenu.AppendCheckItem(-1, _("Whole Words")) + self.Bind(wx.EVT_MENU, self.OnSearchMenu, item) + self.FilterCtrl.SetMenu(searchMenu) buttons_sizer = wx.FlexGridSizer(cols=3, hgap=0, rows=1, vgap=0)
buttons_sizer.Add(self.ParentButton)
buttons_sizer.Add(self.InstanceChoice, flag=wx.GROW)
@@ -181,9 +194,10 @@
buttons_sizer.AddGrowableCol(1)
buttons_sizer.AddGrowableRow(0)
- main_sizer = wx.FlexGridSizer(cols=1, hgap=0, rows=2, vgap=0)
+ main_sizer = wx.FlexGridSizer(cols=1, hgap=0, rows=3, vgap=0) main_sizer.Add(buttons_sizer, flag=wx.GROW)
main_sizer.Add(self.VariablesList, flag=wx.GROW)
+ main_sizer.Add(self.FilterCtrl, flag=wx.GROW) main_sizer.AddGrowableCol(0)
main_sizer.AddGrowableRow(1)
@@ -199,6 +213,11 @@
+ self.FilterCaseSensitive = False + self.FilterWholeWord = False @@ -236,6 +255,21 @@
+ def OnSearchMenu(self, event): + searchMenu = self.FilterCtrl.GetMenu().GetMenuItems() + self.FilterCaseSensitive = searchMenu[0].IsChecked() + self.FilterWholeWord = searchMenu[1].IsChecked() + def OnFilterUpdate(self, event): + self.Filter = self.FilterCtrl.GetValue() + def OnFilterCancel(self, event): + self.FilterCtrl.SetValue('') self.VariablesList.DeleteAllItems()
@@ -252,6 +286,15 @@
if self.PouInfos is not None:
root = self.VariablesList.AddRoot("", data=self.PouInfos)
for var_infos in self.PouInfos.variables:
+ varname = var_infos.name + if not self.FilterCaseSensitive: + pattern = pattern.upper() + varname = varname.upper() + if ((pattern != varname) if self.FilterWholeWord else + (pattern not in varname)): if var_infos.type is not None:
text = "%s (%s)" % (var_infos.name, var_infos.type)
--- a/exemples/svghmi_references/plc.xml Thu Nov 03 17:43:30 2022 +0100
+++ b/exemples/svghmi_references/plc.xml Fri Nov 04 17:38:37 2022 +0100
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
<fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2022-09-05T09:02:48"/>
- <contentHeader name="Unnamed" modificationDateTime="2022-09-20T11:48:55">
+ <contentHeader name="Unnamed" modificationDateTime="2022-10-04T10:59:24"> @@ -22,12 +22,12 @@
<variable name="LocalVar0">
- <variable name="LocalVar1">
+ <variable name="PLCHMIVAR">
+ <derived name="HMI_INT"/> @@ -39,7 +39,7 @@
<relPosition x="85" y="10"/>
- <expression>LocalVar0</expression>
+ <expression>PLCHMIVAR</expression> <outVariable localId="30" executionOrderId="0" height="25" width="85" negated="false">
<position x="330" y="290"/>
@@ -50,7 +50,7 @@
<position x="260" y="300"/>
- <expression>LocalVar1</expression>
+ <expression>LocalVar0</expression> --- a/svghmi/detachable_pages.ysl2 Thu Nov 03 17:43:30 2022 +0100
+++ b/svghmi/detachable_pages.ysl2 Fri Nov 04 17:38:37 2022 +0100
@@ -25,6 +25,17 @@
emit "preamble:default-page" {
| var default_page = "«$default_page»";
+ const "screensaverpage", "$hmi_pages_descs[arg[1]/@value = 'ScreenSaver']"; + when "$screensaverpage" { + const "delaystr", "$screensaverpage/arg[2]/@value"; + if "not(regexp:test($delaystr,'^[0-9]+$'))" + error > ScreenSaver page has missing or malformed delay argument. + | var screensaver_delay = «$delay»; const "keypads_descs", "$parsed_widgets/widget[@type = 'Keypad']";
--- a/svghmi/gen_index_xhtml.xslt Thu Nov 03 17:43:30 2022 +0100
+++ b/svghmi/gen_index_xhtml.xslt Fri Nov 04 17:38:37 2022 +0100
@@ -637,6 +637,27 @@
<xsl:value-of select="$default_page"/>
+ <xsl:variable name="screensaverpage" select="$hmi_pages_descs[arg[1]/@value = 'ScreenSaver']"/> + <xsl:variable name="delay"> + <xsl:when test="$screensaverpage"> + <xsl:variable name="delaystr" select="$screensaverpage/arg[2]/@value"/> + <xsl:if test="not(regexp:test($delaystr,'^[0-9]+$'))"> + <xsl:message terminate="yes"> + <xsl:text>ScreenSaver page has missing or malformed delay argument.</xsl:text> + <xsl:value-of select="$delaystr"/> + <xsl:text>null</xsl:text> + <xsl:text>var screensaver_delay = </xsl:text> + <xsl:value-of select="$delay"/> @@ -2907,9 +2928,17 @@
<xsl:text> if(jump_history.length > 1){
- <xsl:text> jump_history.pop();
- <xsl:text> let [page_name, index] = jump_history.pop();
+ <xsl:text> let page_name, index; + <xsl:text> jump_history.pop(); // forget current page + <xsl:text> if(jump_history.length == 0) return; + <xsl:text> [page_name, index] = jump_history[jump_history.length-1]; + <xsl:text> } while(page_name == "ScreenSaver") // never go back to ScreenSaver <xsl:text> switch_page(page_name, index);
@@ -2919,7 +2948,7 @@
- <xsl:text> this.element.setAttribute("onclick", "hmi_widgets['"+this.element_id+"'].on_click(evt)");
+ <xsl:text> this.element.onclick = this.on_click.bind(this); @@ -11289,20 +11318,6 @@
- <xsl:text> window.location.href.replace(/^http(s?:\/\/[^\/]*)\/.*$/, 'ws$1/ws')
- <xsl:text> + '?mode=' + (has_watchdog ? "watchdog" : "multiclient");
- <xsl:text>var ws = new WebSocket(ws_url);
- <xsl:text>ws.binaryType = 'arraybuffer';
<xsl:text>const dvgetters = {
<xsl:text> INT: (dv,offset) => [dv.getInt16(offset, true), 2],
@@ -11439,7 +11454,7 @@
<xsl:text>// are stored until browser can compute next frame, DOM is left untouched
- <xsl:text>ws.onmessage = function (evt) {
+ <xsl:text>function ws_onmessage(evt) { @@ -11523,9 +11538,13 @@
+ <xsl:text>var ws = null; <xsl:text>function send_blob(data) {
- <xsl:text> if(data.length > 0) {
+ <xsl:text> if(ws && data.length > 0) { <xsl:text> ws.send(new Blob([hmi_hash_u8].concat(data)));
@@ -11539,9 +11558,9 @@
<xsl:text> INT: (number) => new Int16Array([number]),
- <xsl:text> BOOL: (truth) => new Int16Array([truth]),
- <xsl:text> NODE: (truth) => new Int16Array([truth]),
+ <xsl:text> BOOL: (truth) => new Int8Array([truth]), + <xsl:text> NODE: (truth) => new Int8Array([truth]), <xsl:text> REAL: (number) => new Float32Array([number]),
@@ -11641,6 +11660,16 @@
+ <xsl:text>function reset_subscription_periods() { + <xsl:text> for(let index in subscriptions) + <xsl:text> subscriptions[index][1] = 0; <xsl:text>if(has_watchdog){
<xsl:text> // artificially subscribe the watchdog widget to "/heartbeat" hmi variable
@@ -11839,6 +11868,14 @@
<xsl:text> let delta = [];
+ <xsl:text> // dont' change subscriptions if not connected <xsl:text> for(let index in subscriptions){
<xsl:text> let widgets = subscribers(index);
@@ -12079,17 +12116,45 @@
- <xsl:text>function prepare_svg() {
- <xsl:text> // prevents context menu from appearing on right click and long touch
- <xsl:text> document.body.addEventListener('contextmenu', e => {
- <xsl:text> toggleFullscreen();
- <xsl:text> e.preventDefault();
+ <xsl:text>// prevents context menu from appearing on right click and long touch + <xsl:text>document.body.addEventListener('contextmenu', e => { + <xsl:text> toggleFullscreen(); + <xsl:text> e.preventDefault(); + <xsl:text>var screensaver_timer = null; + <xsl:text>function reset_screensaver_timer() { + <xsl:text> if(screensaver_timer){ + <xsl:text> window.clearTimeout(screensaver_timer); + <xsl:text> screensaver_timer = window.setTimeout(() => { + <xsl:text> switch_page("ScreenSaver"); + <xsl:text> screensaver_timer = null; + <xsl:text> }, screensaver_delay*1000); + <xsl:text>if(screensaver_delay) + <xsl:text> document.body.addEventListener('pointerdown', reset_screensaver_timer); + <xsl:text>function detach_detachables() { @@ -12227,11 +12292,17 @@
<xsl:text> requestHMIAnimation();
- <xsl:text> jump_history.push([page_name, page_index]);
- <xsl:text> if(jump_history.length > 42)
- <xsl:text> jump_history.shift();
+ <xsl:text> let [last_page_name, last_page_index] = jump_history[jump_history.length-1]; + <xsl:text> if(last_page_name != page_name || last_page_index != page_index){ + <xsl:text> jump_history.push([page_name, page_index]); + <xsl:text> if(jump_history.length > 42) + <xsl:text> jump_history.shift(); @@ -12387,44 +12458,134 @@
+ <xsl:text>// prepare SVG + <xsl:text>apply_reference_frames(); + <xsl:text>init_widgets(); + <xsl:text>detach_detachables(); + <xsl:text>// show main page + <xsl:text>switch_page(default_page); + <xsl:text>// initialize screensaver + <xsl:text>reset_screensaver_timer(); + <xsl:text>var reconnect_delay = 0; + <xsl:text>var periodic_reconnect_timer; <xsl:text>// Once connection established
- <xsl:text>ws.onopen = function (evt) {
- <xsl:text> apply_reference_frames();
- <xsl:text> init_widgets();
+ <xsl:text>function ws_onopen(evt) { + <xsl:text> // Work around memory leak with websocket on QtWebEngine + <xsl:text> // reconnect every hour to force deallocate websocket garbage + <xsl:text> if(window.navigator.userAgent.includes("QtWebEngine")){ + <xsl:text> if(periodic_reconnect_timer){ + <xsl:text> window.clearTimeout(periodic_reconnect_timer); + <xsl:text> periodic_reconnect_timer = window.setTimeout(() => { + <xsl:text> periodic_reconnect_timer = null; + <xsl:text> }, 3600000); + <xsl:text> // forget subscriptions remotely - <xsl:text> // show main page
- <xsl:text> prepare_svg();
- <xsl:text> switch_page(default_page);
+ <xsl:text> // forget earlier subscriptions locally + <xsl:text> reset_subscription_periods(); + <xsl:text> // update PLC about subscriptions and current page + <xsl:text> switch_page(); + <xsl:text> // at first try reconnect immediately + <xsl:text> reconnect_delay = 1; - <xsl:text>ws.onclose = function (evt) {
+ <xsl:text>function ws_onclose(evt) { + <xsl:text> console.log("Connection closed. code:"+evt.code+" reason:"+evt.reason+" wasClean:"+evt.wasClean+" Reload in "+reconnect_delay+"ms."); <xsl:text> // TODO : add visible notification while waiting for reload
- <xsl:text> console.log("Connection closed. code:"+evt.code+" reason:"+evt.reason+" wasClean:"+evt.wasClean+" Reload in 10s.");
- <xsl:text> // TODO : re-enable auto reload when not in debug
- <xsl:text> //window.setTimeout(() => location.reload(true), 10000);
- <xsl:text> alert("Connection closed. code:"+evt.code+" reason:"+evt.reason+" wasClean:"+evt.wasClean+".");
+ <xsl:text> window.setTimeout(create_ws, reconnect_delay); + <xsl:text> reconnect_delay += 500; + <xsl:text> window.location.href.replace(/^http(s?:\/\/[^\/]*)\/.*$/, 'ws$1/ws') + <xsl:text> + '?mode=' + (has_watchdog ? "watchdog" : "multiclient"); + <xsl:text>function create_ws(){ + <xsl:text> ws = new WebSocket(ws_url); + <xsl:text> ws.binaryType = 'arraybuffer'; + <xsl:text> ws.onmessage = ws_onmessage; + <xsl:text> ws.onclose = ws_onclose; + <xsl:text> ws.onopen = ws_onopen; <xsl:text>const xmlns = "http://www.w3.org/2000/svg";
<xsl:text>var edit_callback;
--- a/svghmi/svghmi.js Thu Nov 03 17:43:30 2022 +0100
+++ b/svghmi/svghmi.js Fri Nov 04 17:38:37 2022 +0100
@@ -23,13 +23,6 @@
// Open WebSocket to relative "/ws" address
var has_watchdog = window.location.hash == "#watchdog";
- window.location.href.replace(/^http(s?:\/\/[^\/]*)\/.*$/, 'ws$1/ws')
- + '?mode=' + (has_watchdog ? "watchdog" : "multiclient");
-var ws = new WebSocket(ws_url);
-ws.binaryType = 'arraybuffer';
INT: (dv,offset) => [dv.getInt16(offset, true), 2],
BOOL: (dv,offset) => [dv.getInt8(offset, true), 1],
@@ -98,7 +91,7 @@
// Message reception handler
// Hash is verified and HMI values updates resulting from binary parsing
// are stored until browser can compute next frame, DOM is left untouched
-ws.onmessage = function (evt) {
+function ws_onmessage(evt) { let dv = new DataView(data);
@@ -140,16 +133,18 @@
hmi_hash_u8 = new Uint8Array(hmi_hash);
function send_blob(data) {
+ if(ws && data.length > 0) { ws.send(new Blob([hmi_hash_u8].concat(data)));
const typedarray_types = {
INT: (number) => new Int16Array([number]),
- BOOL: (truth) => new Int16Array([truth]),
- NODE: (truth) => new Int16Array([truth]),
+ BOOL: (truth) => new Int8Array([truth]), + NODE: (truth) => new Int8Array([truth]), REAL: (number) => new Float32Array([number]),
// beremiz default string max size is 128
@@ -199,6 +194,11 @@
+function reset_subscription_periods() { + for(let index in subscriptions) + subscriptions[index][1] = 0; // artificially subscribe the watchdog widget to "/heartbeat" hmi variable
// Since dispatch directly calls change_hmi_value,
@@ -298,6 +298,10 @@
function update_subscriptions() {
+ // dont' change subscriptions if not connected for(let index in subscriptions){
let widgets = subscribers(index);
@@ -418,12 +422,26 @@
-function prepare_svg() {
- // prevents context menu from appearing on right click and long touch
- document.body.addEventListener('contextmenu', e => {
+// prevents context menu from appearing on right click and long touch +document.body.addEventListener('contextmenu', e => { +var screensaver_timer = null; +function reset_screensaver_timer() { + window.clearTimeout(screensaver_timer); + screensaver_timer = window.setTimeout(() => { + switch_page("ScreenSaver"); + screensaver_timer = null; + }, screensaver_delay*1000); + document.body.addEventListener('pointerdown', reset_screensaver_timer); +function detach_detachables() { for(let eltid in detachable_elements){
let [element,parent] = detachable_elements[eltid];
@@ -492,9 +510,12 @@
jumps_need_update = true;
- jump_history.push([page_name, page_index]);
- if(jump_history.length > 42)
+ let [last_page_name, last_page_index] = jump_history[jump_history.length-1]; + if(last_page_name != page_name || last_page_index != page_index){ + jump_history.push([page_name, page_index]); + if(jump_history.length > 42) apply_hmi_value(current_page_var_index, page_index == undefined
@@ -572,24 +593,69 @@
+apply_reference_frames(); +switch_page(default_page); +// initialize screensaver +reset_screensaver_timer(); +var reconnect_delay = 0; +var periodic_reconnect_timer; // Once connection established
-ws.onopen = function (evt) {
- apply_reference_frames();
+function ws_onopen(evt) { + // Work around memory leak with websocket on QtWebEngine + // reconnect every hour to force deallocate websocket garbage + if(window.navigator.userAgent.includes("QtWebEngine")){ + if(periodic_reconnect_timer){ + window.clearTimeout(periodic_reconnect_timer); + periodic_reconnect_timer = window.setTimeout(() => { + periodic_reconnect_timer = null; + // forget subscriptions remotely
- switch_page(default_page);
+ // forget earlier subscriptions locally + reset_subscription_periods(); + // update PLC about subscriptions and current page + // at first try reconnect immediately -ws.onclose = function (evt) {
+function ws_onclose(evt) { + console.log("Connection closed. code:"+evt.code+" reason:"+evt.reason+" wasClean:"+evt.wasClean+" Reload in "+reconnect_delay+"ms."); // TODO : add visible notification while waiting for reload
- console.log("Connection closed. code:"+evt.code+" reason:"+evt.reason+" wasClean:"+evt.wasClean+" Reload in 10s.");
- // TODO : re-enable auto reload when not in debug
- //window.setTimeout(() => location.reload(true), 10000);
- alert("Connection closed. code:"+evt.code+" reason:"+evt.reason+" wasClean:"+evt.wasClean+".");
+ window.setTimeout(create_ws, reconnect_delay); + reconnect_delay += 500; + window.location.href.replace(/^http(s?:\/\/[^\/]*)\/.*$/, 'ws$1/ws') + + '?mode=' + (has_watchdog ? "watchdog" : "multiclient");
+ ws = new WebSocket(ws_url); + ws.binaryType = 'arraybuffer'; + ws.onmessage = ws_onmessage; + ws.onclose = ws_onclose; const xmlns = "http://www.w3.org/2000/svg";
--- a/svghmi/svghmi.py Thu Nov 03 17:43:30 2022 +0100
+++ b/svghmi/svghmi.py Fri Nov 04 17:38:37 2022 +0100
@@ -641,19 +641,29 @@
repr(shlex.split(given_command.format(**svghmi_options))) +
- ")") if given_command else "pass # no command given"
+ ")") if given_command else "None # no command given" runtimefile_path = os.path.join(buildpath, "runtime_%s_svghmi_.py" % location_str)
runtimefile = open(runtimefile_path, 'w')
-# TODO : multiple watchdog (one for each svghmi instance)
+# generated by beremiz/svghmi/svghmi.py def svghmi_{location}_watchdog_trigger():
- {svghmi_cmds[Watchdog]}
+ restart_proc = {svghmi_cmds[Watchdog]} + waitpid_timeout(restart_proc, "SVGHMI watchdog triggered command") + waitpid_timeout(browser_proc, "SVGHMI browser process") max_svghmi_sessions = {maxConnections_total}
def _runtime_{location}_svghmi_start():
- global svghmi_watchdog, svghmi_servers
+ global svghmi_watchdog, svghmi_servers, browser_proc srv = svghmi_servers.get("{interface}:{port}", None)
@@ -678,7 +688,7 @@
path_list.append("{path}")
+ browser_proc = {svghmi_cmds[Start]} if svghmi_watchdog is None:
@@ -691,7 +701,7 @@
def _runtime_{location}_svghmi_stop():
- global svghmi_watchdog, svghmi_servers
+ global svghmi_watchdog, svghmi_servers, browser_proc if svghmi_watchdog is not None:
@@ -707,7 +717,10 @@
svghmi_listener.stopListening()
svghmi_servers.pop("{interface}:{port}")
+ stop_proc = {svghmi_cmds[Stop]} + waitpid_timeout(stop_proc, "SVGHMI stop command") + waitpid_timeout(browser_proc, "SVGHMI browser process") """.format(location=location_str,
--- a/svghmi/svghmi_server.py Thu Nov 03 17:43:30 2022 +0100
+++ b/svghmi/svghmi_server.py Fri Nov 04 17:38:37 2022 +0100
@@ -8,6 +8,7 @@
from __future__ import absolute_import
from threading import RLock, Timer
from runtime.spawn_subprocess import Popen
@@ -23,6 +24,9 @@
from autobahn.websocket.protocol import WebSocketProtocol
from autobahn.twisted.resource import WebSocketResource
+from runtime.loglevels import LogLevelsDict +from runtime import GetPLCObjectSingleton max_svghmi_sessions = None
@@ -299,3 +303,21 @@
+def waitpid_timeout(proc, helpstr="", timeout = 3): + def waitpid_timeout_loop(pid=proc.pid, timeout = timeout): + while os.waitpid(pid,os.WNOHANG) == (0,0): + GetPLCObjectSingleton().LogMessage( + LogLevelsDict["WARNING"], + "Timeout waiting for {} PID: {}".format(helpstr, str(pid))) + # workaround exception "OSError: [Errno 10] No child processes" + Thread(target=waitpid_timeout_loop, name="Zombie hunter").start() --- a/svghmi/widget_back.ysl2 Thu Nov 03 17:43:30 2022 +0100
+++ b/svghmi/widget_back.ysl2 Fri Nov 04 17:38:37 2022 +0100
@@ -9,17 +9,20 @@
shortdesc > Jump to previous page
if(jump_history.length > 1){
- let [page_name, index] = jump_history.pop();
+ jump_history.pop(); // forget current page + if(jump_history.length == 0) return; + [page_name, index] = jump_history[jump_history.length-1]; + } while(page_name == "ScreenSaver") // never go back to ScreenSaver switch_page(page_name, index);
- this.element.setAttribute("onclick", "hmi_widgets['"+this.element_id+"'].on_click(evt)");
+ this.element.onclick = this.on_click.bind(this); --- a/targets/plc_debug.c Thu Nov 03 17:43:30 2022 +0100
+++ b/targets/plc_debug.c Fri Nov 04 17:38:37 2022 +0100
@@ -154,8 +154,6 @@
UnpackVar(dsc, &value_p, NULL, &size);
- printf("Reminding %%d %%ld \n", retain_list_collect_cursor, size);
Remind(retain_offset, size, value_p);
/* increment cursor according size*/
@@ -211,8 +209,6 @@
retain_list_collect_cursor++;
- printf("Retain size %%d \n", retain_size);
--- a/tests/projects/svghmi/svghmi_0@svghmi/svghmi.svg Thu Nov 03 17:43:30 2022 +0100
+++ b/tests/projects/svghmi/svghmi_0@svghmi/svghmi.svg Fri Nov 04 17:38:37 2022 +0100
@@ -137,8 +137,8 @@
inkscape:zoom="0.40092403"
- inkscape:cx="323.58553"
- inkscape:cy="-56.756946"
+ inkscape:cx="2333.0807" + inkscape:cy="1015.6842" inkscape:window-width="1600"
inkscape:window-height="836"
@@ -6543,6 +6543,31 @@
style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Home</tspan></text>
+ transform="translate(-519.60999,-498.54925)" + inkscape:label="HMI:Back"> + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5.20923424;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:1.04184675px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve"><tspan + style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.04184675px" + sodipodi:role="line">Back</tspan></text> @@ -8557,4 +8582,294 @@
sodipodi:role="line">Home</tspan></text>
+ style="color:#000000;fill:#000000" + inkscape:label="HMI:Page:ScreenSaver:12" /> + transform="matrix(4.3157423,0,0,4.3157423,1737.4823,-785.25938)" + style="stroke-width:0.23170985" + style="fill:#ff6600;stroke-width:0.25819258px;font-variant-east_asian:normal;opacity:1;vector-effect:none;fill-opacity:1;stroke:none;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" + transform="matrix(0.866,-0.5,0.25,0.433,80,80)" + style="stroke-width:0.23170985"> + d="M 0,70 A 65,70 0 0 0 65,0 5,5 0 0 1 75,0 75,70 0 0 1 0,70 Z" + inkscape:connector-curvature="0" + style="fill:#ffffff;stroke-width:0.23170985"> + repeatCount="indefinite" + attributeName="transform" /> + style="fill:#ff6600;stroke-width:0.25819826px;font-variant-east_asian:normal;opacity:1;vector-effect:none;fill-opacity:1;stroke:none;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" + transform="matrix(0.866,-0.5,0.5,0.866,80,80)" + d="M 50,0 A 50,50 0 0 0 -50,0 Z" + inkscape:connector-curvature="0" /> + inkscape:label="HMI:Back" + transform="translate(0,80)"> + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5.20923424;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:1.04184675px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve"><tspan + style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.04184675px" + sodipodi:role="line">Leave ScreenSaver</tspan></text> + inkscape:label="HMI:Jump:Home" + transform="translate(1466.2292,-1613.0769)"> + inkscape:label="button"> + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 1217.4113,1410.4016 -22,24.5657 c -10.7925,12.0511 6.1317,35.5791 -13.5791,35.5791 h -174.2877 c -19.71078,0 -2.7866,-23.528 -13.57905,-35.5791 l -22,-24.5657 127.74845,-48.4334 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cssssccc" /> + style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + inkscape:label="home_jmp"><tspan + style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Home</tspan></text> + inkscape:label="HMI:Jump:Conf" + transform="matrix(0.57180538,0,0,0.57180538,1065.1448,-867.17294)"> + inkscape:label="button"> + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + inkscape:label="button" /> + inkscape:label="setting_jmp" + style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve"><tspan + style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px" + sodipodi:role="line">Settings</tspan></text> + transform="matrix(0.57180538,0,0,0.57180538,1346.4405,-1101.6314)" + inkscape:label="HMI:Jump:RelativePageTest@/PUMP0" + inkscape:label="button" + inkscape:label="button" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + inkscape:label="setting_jmp"><tspan + style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px" + id="tspan1460-2">Pump 0</tspan></text> + inkscape:label="HMI:Jump:RelativePageTest@/PUMP1" + transform="matrix(0.57180538,0,0,0.57180538,1506.4405,-1101.6314)"> + inkscape:label="button"> + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + inkscape:label="button" /> + inkscape:label="setting_jmp" + style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve"><tspan + style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px" + sodipodi:role="line">Pump 1</tspan><tspan + style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px" + id="tspan1477-2" /></text> + transform="matrix(0.57180538,0,0,0.57180538,1666.4405,-1101.6314)" + inkscape:label="HMI:Jump:RelativePageTest@/PUMP2" + inkscape:label="button" + inkscape:label="button" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + inkscape:label="setting_jmp"><tspan + style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px" + id="tspan1493-7">Pump 2</tspan><tspan + style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px" /></text> + inkscape:label="HMI:Jump:RelativePageTest@/PUMP3" + transform="matrix(0.57180538,0,0,0.57180538,1826.4405,-1101.6314)"> + inkscape:label="button"> + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + inkscape:label="button" /> + inkscape:label="setting_jmp" + style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve"><tspan + style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px" + id="tspan1511-1">Pump 3</tspan><tspan + style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px" + id="tspan1503-0" /></text>