]> git.basschouten.com Git - openhab-addons.git/blob
40860229781b204b29171fd16f68aacddb62ff89
[openhab-addons.git] /
1 <?xml version="1.0" encoding="UTF-8"?>
2 <thing:thing-descriptions bindingId="teleinfo"
3         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4         xmlns:thing="https://openhab.org/schemas/thing-description/v1.0.0"
5         xsi:schemaLocation="https://openhab.org/schemas/thing-description/v1.0.0 https://openhab.org/schemas/thing-description-1.0.0.xsd">
6
7         <channel-group-type id="threePhasedLSMGroupType">
8                 <label>Three-phase</label>
9                 <description>Three-phased channels for Linky telemeter in standard teleinformation mode</description>
10                 <category>Energy</category>
11                 <channels>
12
13                         <channel id="irms2" typeId="currentType">
14                                 <label>IRMS2</label>
15                                 <description>RMS Current on phase 2</description>
16                         </channel>
17
18                         <channel id="irms3" typeId="currentType">
19                                 <label>IRMS3</label>
20                                 <description>RMS Current on phase 3</description>
21                         </channel>
22
23                         <channel id="urms2" typeId="potentialType">
24                                 <label>URMS2</label>
25                                 <description>RMS Voltage on phase 2</description>
26                         </channel>
27
28                         <channel id="urms3" typeId="potentialType">
29                                 <label>URMS3</label>
30                                 <description>RMS Voltage on phase 3</description>
31                         </channel>
32
33                         <channel id="sinsts1" typeId="powerType">
34                                 <label>SINSTS1</label>
35                                 <description>Instantaneous withdrawn apparent power on phase 1</description>
36                         </channel>
37
38                         <channel id="sinsts2" typeId="powerType">
39                                 <label>SINSTS2</label>
40                                 <description>Instantaneous withdrawn apparent power on phase 2</description>
41                         </channel>
42
43                         <channel id="sinsts3" typeId="powerType">
44                                 <label>SINSTS3</label>
45                                 <description>Instantaneous withdrawn apparent power on phase 3</description>
46                         </channel>
47
48                         <channel id="smaxsn1" typeId="powerType">
49                                 <label>SMAXSN1</label>
50                                 <description>Maximum withdrawn apparent power of the day on phase 1</description>
51                         </channel>
52
53                         <channel id="smaxsn2" typeId="powerType">
54                                 <label>SMAXSN2</label>
55                                 <description>Maximum withdrawn apparent power of the day on phase 2</description>
56                         </channel>
57
58                         <channel id="smaxsn3" typeId="powerType">
59                                 <label>SMAXSN3</label>
60                                 <description>Maximum withdrawn apparent power of the day on phase 3</description>
61                         </channel>
62
63                         <channel id="smaxsn1Minus1" typeId="powerType">
64                                 <label>SMAXSN1-1</label>
65                                 <description>Maximum withdrawn apparent power of the previous day on phase 1</description>
66                         </channel>
67
68                         <channel id="smaxsn2Minus1" typeId="powerType">
69                                 <label>SMAXSN2-1</label>
70                                 <description>Maximum withdrawn apparent power of the previous day on phase 2</description>
71                         </channel>
72
73                         <channel id="smaxsn3Minus1" typeId="powerType">
74                                 <label>SMAXSN3-1</label>
75                                 <description>Maximum withdrawn apparent power of the previous day on phase 3</description>
76                         </channel>
77
78                         <channel id="umoy2" typeId="potentialType">
79                                 <label>UMOY2</label>
80                                 <description>Mean Voltage on phase 2</description>
81                         </channel>
82
83                         <channel id="umoy3" typeId="potentialType">
84                                 <label>UMOY3</label>
85                                 <description>Mean Voltage on phase 3</description>
86                         </channel>
87
88                         <channel id="smaxsn1Date" typeId="dateTimeType">
89                                 <label>SMAXSN1 TIMESTAMP</label>
90                                 <description>Timestamp of SMAXSN1 value</description>
91                         </channel>
92
93                         <channel id="smaxsn2Date" typeId="dateTimeType">
94                                 <label>SMAXSN2 TIMESTAMP</label>
95                                 <description>Timestamp of SMAXSN2 value</description>
96                         </channel>
97
98                         <channel id="smaxsn3Date" typeId="dateTimeType">
99                                 <label>SMAXSN3 TIMESTAMP</label>
100                                 <description>Timestamp of SMAXSN3 value</description>
101                         </channel>
102
103                         <channel id="smaxsn1Minus1Date" typeId="dateTimeType">
104                                 <label>SMAXSN1-1 TIMESTAMP</label>
105                                 <description>Timestamp of SMAXSN1-1 value</description>
106                         </channel>
107
108                         <channel id="smaxsn2Minus1Date" typeId="dateTimeType">
109                                 <label>SMAXSN2-1 TIMESTAMP</label>
110                                 <description>Timestamp of SMAXSN2-1 value</description>
111                         </channel>
112
113                         <channel id="smaxsn3Minus1Date" typeId="dateTimeType">
114                                 <label>SMAXSN3-1 TIMESTAMP</label>
115                                 <description>Timestamp of SMAXSN3-1 value</description>
116                         </channel>
117
118                         <channel id="umoy2Date" typeId="dateTimeType">
119                                 <label>UMOY2 TIMESTAMP</label>
120                                 <description>Timestamp of UMOY2 value</description>
121                         </channel>
122
123                         <channel id="umoy3Date" typeId="dateTimeType">
124                                 <label>UMOY3 TIMESTAMP</label>
125                                 <description>Timestamp of UMOY3 value</description>
126                         </channel>
127                 </channels>
128         </channel-group-type>
129
130         <channel-type id="stringType">
131                 <item-type>String</item-type>
132                 <label>Teleinfo String Type</label>
133                 <category>Energy</category>
134                 <state pattern="%s" readOnly="true"/>
135         </channel-type>
136
137         <channel-type id="energyType">
138                 <item-type>Number:Energy</item-type>
139                 <label>Teleinfo Energy Type</label>
140                 <category>Energy</category>
141                 <state pattern="%d %unit%" readOnly="true"/>
142         </channel-type>
143
144         <channel-type id="currentType">
145                 <item-type>Number:ElectricCurrent</item-type>
146                 <label>Teleinfo Current Type</label>
147                 <category>Energy</category>
148                 <state pattern="%d %unit%" readOnly="true"/>
149         </channel-type>
150
151         <channel-type id="potentialType">
152                 <item-type>Number:ElectricPotential</item-type>
153                 <label>Teleinfo Potential Type</label>
154                 <category>Energy</category>
155                 <state pattern="%d %unit%" readOnly="true"/>
156         </channel-type>
157
158         <channel-type id="powerType">
159                 <item-type>Number:Power</item-type>
160                 <label>Teleinfo Power Type</label>
161                 <category>Energy</category>
162                 <state pattern="%d %unit%" readOnly="true"/>
163         </channel-type>
164
165         <channel-type id="switchType">
166                 <item-type>Switch</item-type>
167                 <label>Teleinfo Switch Type</label>
168                 <category>Energy</category>
169                 <state readOnly="true"/>
170         </channel-type>
171
172         <channel-type id="dateTimeType">
173                 <item-type>DateTime</item-type>
174                 <label>Teleinfo DateTime Type</label>
175                 <category>Energy</category>
176                 <state readOnly="true" pattern="%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS"/>
177         </channel-type>
178
179 </thing:thing-descriptions>