-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
driver.xml
326 lines (326 loc) · 7.66 KB
/
driver.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
<devicedata>
<copyright>Copyright 2022 Welton Cartel. All rights reserved.</copyright>
<creator>Welton Cartel</creator>
<name>Tesla Home Charger</name>
<model>Tesla Wall Connector (Gen 3)</model>
<manufacturer>Tesla</manufacturer>
<version>6</version>
<created>16/09/2022 12:00 AM</created>
<modified>22/09/2022 12:00 AM</modified>
<composer_categories>
<category>Power</category>
</composer_categories>
<small image_source="c4z">icons/device_sm.png</small>
<large image_source="c4z">icons/device_lg.png</large>
<control>lua_gen</control>
<proxies>
<proxy image_source="c4z" large_image="icons/device_lg.png" lgimagepath="icons/device_lg.png" name="Tesla Home Charger" proxybindingid="5001" small_image="icons/device_sm.png" smimagepath="icons/device_sm.png">tesla_home_charger</proxy>
</proxies>
<composer_categories/>
<driver>DriverWorks</driver>
<config>
<script file="driver.lua" />
<documentation file="www/documentation/index.html"/>
<properties>
<property>
<name>Driver Name</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Driver Version</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Debug Mode</name>
<type>LIST</type>
<items>
<item>Off</item>
<item>On</item>
</items>
<default>Off</default>
<readonly>false</readonly>
</property>
<property>
<name>Device IP</name>
<type>STRING</type>
<default/>
</property>
<property>
<name>Poll Interval (Seconds)</name>
<type>RANGED_INTEGER</type>
<minimum>30</minimum>
<maximum>86400</maximum>
<default>30</default>
</property>
<property>
<name>Device Information</name>
<type>LABEL</type>
<default>Device Information</default>
</property>
<property>
<name>Connection Status</name>
<type>STRING</type>
<default>OFFLINE</default>
<readonly>true</readonly>
</property>
<property>
<name>Serial Number</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Firmware Version</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>MAC Address</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Internet Connected</name>
<type>STRING</type>
<default>false</default>
<readonly>true</readonly>
</property>
<property>
<name>Session Stats</name>
<type>LABEL</type>
<default>Session Stats</default>
</property>
<property>
<name>Vehicle Charging</name>
<type>STRING</type>
<default>false</default>
<readonly>true</readonly>
</property>
<property>
<name>Vehicle Connected</name>
<type>STRING</type>
<default>false</default>
<readonly>true</readonly>
</property>
<property>
<name>Current Session Time</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Measured Grid Voltage (V)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Measured Grid Frequency (Hz)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Measured Vehicle Current (A)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Measured Current Phase 1 (A)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Measured Current Phase 2 (A)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Measured Current Phase 3 (A)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Measured Current Neutral (A)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Measured Voltage Phase 1 (V)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Measured Voltage Phase 2 (V)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Measured Voltage Phase 3 (V)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Relay Coil Voltage (V)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>PCBA Temp (C)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Handle Temp (C)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>MCU Temp (C)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Wall Charger Uptime</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Input Thermopile UV</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Prox (V)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Pilot Signal High Voltage (V)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Pilot Signal Low Voltage (V)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Delivered Session Energy (Wh)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Config Status</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Wall Charger State</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Current Alerts</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Lifetime Stats</name>
<type>LABEL</type>
<default>Lifetime Stats</default>
</property>
<property>
<name>Contactor Cycles</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Contactor Cycles Loaded</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Alert Count</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Thermal Foldbacks</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Average Startup Temp (C)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Number of Started Charges</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Total Energy Delivered (Wh)</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Connector Cycles</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Lifetime Uptime</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
<property>
<name>Total Charging Time</name>
<type>STRING</type>
<default/>
<readonly>true</readonly>
</property>
</properties>
<commands />
<actions />
</config>
<connections />
<capabilities />
</devicedata>