-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplclinksample.xml
59 lines (59 loc) · 2.09 KB
/
plclinksample.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE wagoml PUBLIC "-//wagoml org//DTD WAGOML 1.0//EN" "http://pautex.fr/wago/DTD/WagoML-1.0.dtd">
<wagoml version="1.0" xmlns="http://pautex.fr/wago/">
<title>piweb</title>
<rooms>
<room id="0">
<title>Piscine</title>
<refresh>4000</refresh>
<items>
<item id="0">
<title>Temperature</title>
<name>Temperature</name>
<description>Eau à </description>
<type>json</type><text>state</text>
<unit>°C</unit>
<affichage>text</affichage>
<url>http://servername/action.php?action=getTemperature</url>
</item>
<item id="1">
<title>ORP</title>
<name>ORP</name>
<description>Desinfectant (650-750) </description>
<type>json</type><text>state</text>
<unit>mV</unit>
<affichage>text</affichage>
<url>http://servername/action.php?action=getORP</url>
</item>
<item id="2">
<title>PH</title>
<name>PH</name>
<description>Taux Ph (7.0-7.5) </description>
<type>json</type><text>state</text>
<affichage>text</affichage>
<url>http://servername/action.php?action=getPh</url>
</item>
<item id="3">
<title>Pompe</title>
<name>Pompe</name>
<description>Etat filtration</description>
<type>json</type>
<text>state</text>
<affichage>switch</affichage>
<url>http://servername/action.php?getState=filtration</url>
<link>http://servername/action.php?filtration=%d</link>
</item>
<item id="4">
<title>Traitement</title>
<name>Traitement</name>
<description>Etat traitement</description>
<type>json</type>
<text>state</text>
<affichage>switch</affichage>
<url>http://servername/action.php?getState=traitement1</url>
<link>http://servername/action.php?traitement1=%d</link>
</item>
</items>
</room>
</rooms>
</wagoml>