]> git.basschouten.com Git - openhab-addons.git/blob
63399587edef081558018d5d211b3fcf12694551
[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="producerLSMGroupType">
8                 <label>Producer</label>
9                 <description>Producer channels for Linky telemeter in standard teleinformation mode</description>
10                 <category>Energy</category>
11                 <channels>
12                         <channel id="eait" typeId="energyType">
13                                 <label>EAIT</label>
14                                 <description>Total active energy injected</description>
15                         </channel>
16
17                         <channel id="erq1" typeId="energyType">
18                                 <label>ERQ1</label>
19                                 <description>Total reactive energy Q1</description>
20                         </channel>
21
22                         <channel id="erq2" typeId="energyType">
23                                 <label>ERQ2</label>
24                                 <description>Total reactive energy Q2</description>
25                         </channel>
26
27                         <channel id="erq3" typeId="energyType">
28                                 <label>ERQ3</label>
29                                 <description>Total reactive energy Q3</description>
30                         </channel>
31
32                         <channel id="erq4" typeId="energyType">
33                                 <label>ERQ4</label>
34                                 <description>Total reactive energy Q4</description>
35                         </channel>
36
37                         <channel id="sinsti" typeId="powerType">
38                                 <label>SINSTI</label>
39                                 <description>Instantaneous injected apparent power</description>
40                         </channel>
41
42                         <channel id="smaxin" typeId="powerType">
43                                 <label>SMAXIN</label>
44                                 <description>Maximum injected apparent power of the day</description>
45                         </channel>
46
47                         <channel id="smaxinMinus1" typeId="powerType">
48                                 <label>SMAXIN-1</label>
49                                 <description>Maximum injected apparent power of the previous day</description>
50                         </channel>
51
52                         <channel id="ccain" typeId="powerType">
53                                 <label>CCAIN</label>
54                                 <description>Injected active charge point N</description>
55                         </channel>
56
57                         <channel id="ccainMinus1" typeId="powerType">
58                                 <label>CCAIN-1</label>
59                                 <description>Injected active charge point N-1</description>
60                         </channel>
61
62                         <channel id="smaxinDate" typeId="dateTimeType">
63                                 <label>SMAXIN TIMESTAMP</label>
64                                 <description>Timestamp of SMAXIN value</description>
65                         </channel>
66
67                         <channel id="smaxinMinus1Date" typeId="dateTimeType">
68                                 <label>SMAXIN-1 TIMESTAMP</label>
69                                 <description>Timestamp of SMAXIN-1 value</description>
70                         </channel>
71
72                         <channel id="ccainDate" typeId="dateTimeType">
73                                 <label>CCAIN TIMESTAMP</label>
74                                 <description>Timestamp of CCAIN value</description>
75                         </channel>
76
77                         <channel id="ccainMinus1Date" typeId="dateTimeType">
78                                 <label>CCAIN-1 TIMESTAMP</label>
79                                 <description>Timestamp of CCAIN-1 value</description>
80                         </channel>
81                 </channels>
82         </channel-group-type>
83
84         <channel-type id="stringType">
85                 <item-type>String</item-type>
86                 <label>Teleinfo String Type</label>
87                 <category>Energy</category>
88                 <state pattern="%s" readOnly="true"/>
89         </channel-type>
90
91         <channel-type id="energyType">
92                 <item-type>Number:Energy</item-type>
93                 <label>Teleinfo Energy Type</label>
94                 <category>Energy</category>
95                 <state pattern="%d %unit%" readOnly="true"/>
96         </channel-type>
97
98         <channel-type id="currentType">
99                 <item-type>Number:ElectricCurrent</item-type>
100                 <label>Teleinfo Current Type</label>
101                 <category>Energy</category>
102                 <state pattern="%d %unit%" readOnly="true"/>
103         </channel-type>
104
105         <channel-type id="potentialType">
106                 <item-type>Number:ElectricPotential</item-type>
107                 <label>Teleinfo Potential Type</label>
108                 <category>Energy</category>
109                 <state pattern="%d %unit%" readOnly="true"/>
110         </channel-type>
111
112         <channel-type id="powerType">
113                 <item-type>Number:Power</item-type>
114                 <label>Teleinfo Power Type</label>
115                 <category>Energy</category>
116                 <state pattern="%d %unit%" readOnly="true"/>
117         </channel-type>
118
119         <channel-type id="switchType">
120                 <item-type>Switch</item-type>
121                 <label>Teleinfo Switch Type</label>
122                 <category>Energy</category>
123                 <state readOnly="true"/>
124         </channel-type>
125
126         <channel-type id="dateTimeType">
127                 <item-type>DateTime</item-type>
128                 <label>Teleinfo DateTime Type</label>
129                 <category>Energy</category>
130                 <state readOnly="true" pattern="%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS"/>
131         </channel-type>
132
133 </thing:thing-descriptions>