-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathschundmeter.yaml
377 lines (332 loc) · 8.39 KB
/
schundmeter.yaml
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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
esphome:
name: schundmeter
friendly_name: schundmeter
esp8266:
board: esp01_1m
# Enable logging
logger:
level: WARN
# Enable Home Assistant API
api:
encryption:
key: "YohrsCVL3OixlSyAQ31cFaSo1tOjhW/vTfWeN0GFjxk="
ota:
password: "fa91438ec2b936dbdc92e9c4dacfe629"
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Schundmeter Fallback Hotspot"
password: "jKThN2NNyCpc"
# Enable Web server
web_server:
port: 80
captive_portal:
###
globals:
- id: chint_energy_cal
type: std::uint32_t
restore_value: yes
initial_value: '0'
uart:
id: mod_bus
tx_pin: GPIO13 # connected to tx on modbus converter
rx_pin: GPIO12 # connected to rx on modbus converter
baud_rate: 9600
stop_bits: 1
data_bits: 8
modbus:
send_wait_time: 2000ms
id: modbus1
#address chint dtsu666
modbus_controller:
address: 0xfe
modbus_id: modbus1
update_interval: 1s
setup_priority: -10
command_throttle: 20ms
sensor:
- platform: modbus_controller
id: chint_voltage_a
name: "chint voltage phase 1"
address: 0x0061
unit_of_measurement: "V"
register_type: holding
value_type: U_WORD
accuracy_decimals: 1
filters:
- multiply: 0.1
- platform: modbus_controller
id: chint_voltage_b
name: "chint voltage phase 2"
address: 0x0062
unit_of_measurement: "V"
register_type: holding
value_type: U_WORD
accuracy_decimals: 1
filters:
- multiply: 0.1
- platform: modbus_controller
id: chint_voltage_c
name: "chint voltage phase 3"
address: 0x0063
unit_of_measurement: "V"
register_type: holding
value_type: U_WORD
accuracy_decimals: 1
filters:
- multiply: 0.1
- platform: modbus_controller
id: chint_current_a
name: "chint current phase 1"
address: 0x0064
unit_of_measurement: "A"
register_type: holding
value_type: U_WORD
accuracy_decimals: 2
filters:
- multiply: 0.01
- platform: modbus_controller
id: chint_current_b
name: "chint current phase 2"
address: 0x0065
unit_of_measurement: "A"
register_type: holding
value_type: U_WORD
accuracy_decimals: 2
filters:
- multiply: 0.01
- platform: modbus_controller
id: chint_current_c
name: "chint current phase 3"
address: 0x0066
unit_of_measurement: "A"
register_type: holding
value_type: U_WORD
accuracy_decimals: 2
filters:
- multiply: 0.01
- platform: modbus_controller
id: chint_frequency
name: "chint frequency"
address: 0x0077
unit_of_measurement: "Hz"
register_type: holding
value_type: U_WORD
accuracy_decimals: 2
filters:
- multiply: 0.01
- platform: modbus_controller
id: chint_voltage_a_to_b
name: "chint voltage phase 1 to 2"
address: 0x0078
unit_of_measurement: "V"
register_type: holding
value_type: U_WORD
accuracy_decimals: 1
filters:
- multiply: 0.1
- platform: modbus_controller
id: chint_voltage_c_to_b
name: "chint voltage phase 2 to 3"
address: 0x0079
unit_of_measurement: "V"
register_type: holding
value_type: U_WORD
accuracy_decimals: 1
filters:
- multiply: 0.1
- platform: modbus_controller
id: chint_voltage_a_to_c
name: "chint voltage phase 3 to 1"
address: 0x007A
unit_of_measurement: "V"
register_type: holding
value_type: U_WORD
accuracy_decimals: 1
filters:
- multiply: 0.1
- platform: modbus_controller
id: chint_active_power_total
name: "chint active power total"
address: 0x016A
unit_of_measurement: "W"
register_type: holding
value_type: S_DWORD
accuracy_decimals: 0
- platform: modbus_controller
id: chint_active_power_phase_a
name: "chint active power phase 1"
address: 0x0164
unit_of_measurement: "W"
register_type: holding
value_type: S_DWORD
accuracy_decimals: 0
- platform: modbus_controller
id: chint_active_power_phase_b
name: "chint active power phase 2"
address: 0x0166
unit_of_measurement: "W"
register_type: holding
value_type: S_DWORD
accuracy_decimals: 0
- platform: modbus_controller
id: chint_active_power_phase_c
name: "chint active power phase 3"
address: 0x0168
unit_of_measurement: "W"
register_type: holding
value_type: S_DWORD
accuracy_decimals: 0
- platform: modbus_controller
id: chint_reactive_power_total
name: "chint reactive power total"
address: 0x0172
unit_of_measurement: "VAR"
register_type: holding
value_type: S_DWORD
accuracy_decimals: 0
- platform: modbus_controller
id: chint_reactive_power_phase_a
name: "chint reactive power phase 1"
address: 0x016C
unit_of_measurement: "VAR"
register_type: holding
value_type: S_DWORD
accuracy_decimals: 0
- platform: modbus_controller
id: chint_reactive_power_phase_b
name: "chint reactive power phase 2"
address: 0x016E
unit_of_measurement: "VAR"
register_type: holding
value_type: S_DWORD
accuracy_decimals: 0
- platform: modbus_controller
id: chint_reactive_power_phase_c
name: "chint reactive power phase 3"
address: 0x0170
unit_of_measurement: "VAR"
register_type: holding
value_type: S_DWORD
accuracy_decimals: 0
force_new_range: true
- platform: modbus_controller
id: chint_apparent_power_total
name: "chint apparent power total"
address: 0x017A
unit_of_measurement: "VA"
register_type: holding
value_type: S_DWORD
accuracy_decimals: 0
force_new_range: true
- platform: modbus_controller
id: chint_apparent_power_phase_a
name: "chint apparent power phase 1"
address: 0x0174
unit_of_measurement: "VA"
register_type: holding
value_type: S_DWORD
accuracy_decimals: 0
- platform: modbus_controller
id: chint_apparent_power_phase_b
name: "chint apparent power phase 2"
address: 0x0176
unit_of_measurement: "VA"
register_type: holding
value_type: S_DWORD
accuracy_decimals: 0
- platform: modbus_controller
id: chint_apparent_power_phase_c
name: "chint apparent power phase 3"
address: 0x0178
unit_of_measurement: "VA"
register_type: holding
value_type: S_DWORD
accuracy_decimals: 0
- platform: modbus_controller
id: chint_forward_energy_total
name: "chint energy total from grid"
address: 0x0000
unit_of_measurement: "kWh"
register_type: holding
value_type: U_DWORD
accuracy_decimals: 2
filters:
- multiply: 0.01
- platform: modbus_controller
id: chint_reversing_energy_total
name: "chint energy total to grid"
address: 0x0014
unit_of_measurement: "kWh"
register_type: holding
value_type: U_DWORD
accuracy_decimals: 2
filters:
- multiply: 0.01
- platform: modbus_controller
id: chint_power_factor_total
name: "chint power factor total"
address: 0x017F
unit_of_measurement: "cosphi"
register_type: holding
value_type: S_WORD
accuracy_decimals: 3
filters:
- multiply: 0.001
- platform: modbus_controller
id: chint_power_factor_phase_a
name: "chint power factor phase 1"
address: 0x017C
unit_of_measurement: "cosphi"
register_type: holding
value_type: S_WORD
accuracy_decimals: 3
filters:
- multiply: 0.001
- platform: modbus_controller
id: chint_power_factor_phase_b
name: "chint power factor phase 2"
address: 0x017D
unit_of_measurement: "cosphi"
register_type: holding
value_type: S_WORD
accuracy_decimals: 3
filters:
- multiply: 0.001
- platform: modbus_controller
id: chint_power_factor_phase_c
name: "chint power factor phase 3"
address: 0x017E
unit_of_measurement: "cosphi"
register_type: holding
value_type: S_WORD
accuracy_decimals: 3
filters:
- multiply: 0.001
# Todo: use correct sensor name and mark the original sensor as internal
- platform: template
name: "Total Energy"
id: "energy_total"
# accuracy_decimals: 2
# unit_of_measurement: "°C"
# device_class: temperature
# state_class: measurement
# icon: mdi:thermometer
lambda: |-
return (id(chint_total_energy).state - id(chint_energy_cal));
# update_interval: 15s
# Todo: Test lambda!
button:
- platform: template
name: "Chin Chin reset total energy"
entity_category: "config"
on_press:
then:
- lambda: |-
id(chint_energy_cal) = id(chint_total_energy).state;
- platform: safe_mode
name: "Chin Chin Restart (Safe Mode)"
- platform: restart
name: "Chin Chin Restart"