-
Notifications
You must be signed in to change notification settings - Fork 0
/
dtsd422_esphome.yaml
562 lines (512 loc) · 13.3 KB
/
dtsd422_esphome.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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
esphome:
name: esp32-smartmeter
friendly_name: ESPHome Smartmeter
substitutions:
friendly_name: SmartMeter
esp_id: smartmeter
friendly_node_name: ESP-smartmeter
esp32:
board: esp32dev
framework:
type: arduino
status_led:
pin:
number: GPIO2 #PIN D4
inverted: yes # "yes" - Dioda mruga gdy nie można nawiązać połączenie.
# "no" - Dioda świeci gdy połączenie jest nawiązane.
# Enable logging
logger:
level: DEBUG
baud_rate: 0
# Enable Home Assistant API
api:
encryption:
key: ""
ota:
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Esp32-smartmeter"
password: ""
captive_portal:
uart:
id: mod_bus
tx_pin: GPIO17
rx_pin: GPIO16
baud_rate: 9600
stop_bits: 1
parity: EVEN
modbus:
id: mod_bus_smartmeter
modbus_controller:
- id: smartmeter
address: 0x01
modbus_id: mod_bus_smartmeter
update_interval: 10s
setup_priority: -10
command_throttle:
milliseconds: 100
sensor:
- platform: wifi_signal
id: ${esp_id}_wifi_signal
name: ${friendly_node_name} WiFi Signal
update_interval: 60s
icon: "mdi:wifi"
- platform: uptime
id: ${esp_id}_uptime
name: ${friendly_node_name} Uptime
filters:
- lambda: return x / 60.0;
unit_of_measurement: min
icon: "mdi:clock-start"
#Smartmeter
- platform: modbus_controller
modbus_controller_id: smartmeter
name: ${friendly_name} CT1 Voltage
id: ${esp_id}_ct1_v
register_type: holding
address: 0x01
unit_of_measurement: "V"
state_class: "measurement"
device_class: "voltage"
icon: "mdi:alpha-v-circle-outline"
value_type: U_WORD
accuracy_decimals: 1
filters:
- multiply: 0.1
- clamp:
min_value: 150
max_value: 280
ignore_out_of_range: true
- platform: modbus_controller
modbus_controller_id: smartmeter
name: ${friendly_name} CT2 Voltage
id: ${esp_id}_ct2_v
register_type: holding
address: 0x02
unit_of_measurement: "V"
state_class: "measurement"
device_class: "voltage"
icon: "mdi:alpha-v-circle-outline"
value_type: U_WORD
accuracy_decimals: 1
filters:
- multiply: 0.1
- clamp:
min_value: 150
max_value: 280
ignore_out_of_range: true
- platform: modbus_controller
modbus_controller_id: smartmeter
name: ${friendly_name} CT3 Voltage
id: ${esp_id}_ct3_v
register_type: holding
address: 0x03
unit_of_measurement: "V"
state_class: "measurement"
device_class: "voltage"
icon: "mdi:alpha-v-circle-outline"
value_type: U_WORD
accuracy_decimals: 1
filters:
- multiply: 0.1
- clamp:
min_value: 150
max_value: 280
ignore_out_of_range: true
- platform: modbus_controller
modbus_controller_id: smartmeter
name: ${friendly_name} CT4 Voltage
id: ${esp_id}_ct4_v
register_type: holding
address: 0x1001
unit_of_measurement: "V"
state_class: "measurement"
device_class: "voltage"
icon: "mdi:alpha-v-circle-outline"
value_type: U_WORD
accuracy_decimals: 1
filters:
- multiply: 0.1
- clamp:
min_value: 150
max_value: 280
ignore_out_of_range: true
- platform: modbus_controller
modbus_controller_id: smartmeter
name: ${friendly_name} CT5 Voltage
id: ${esp_id}_ct5_v
register_type: holding
address: 0x1002
unit_of_measurement: "V"
state_class: "measurement"
device_class: "voltage"
icon: "mdi:alpha-v-circle-outline"
value_type: U_WORD
accuracy_decimals: 1
filters:
- multiply: 0.1
- clamp:
min_value: 150
max_value: 280
ignore_out_of_range: true
- platform: modbus_controller
modbus_controller_id: smartmeter
name: ${friendly_name} CT6 Voltage
id: ${esp_id}_ct6_v
register_type: holding
address: 0x1003
unit_of_measurement: "V"
state_class: "measurement"
device_class: "voltage"
icon: "mdi:alpha-v-circle-outline"
value_type: U_WORD
accuracy_decimals: 1
filters:
- multiply: 0.1
- clamp:
min_value: 150
max_value: 280
ignore_out_of_range: true
- platform: modbus_controller
modbus_controller_id: smartmeter
id: ${esp_id}_ct1_cs
register_type: holding
address: 0x07
value_type: U_WORD
internal: true
- platform: modbus_controller
name: ${friendly_name} CT1 Current
modbus_controller_id: smartmeter
id: ${esp_id}_ct1_c
register_type: holding
address: 0x08
value_type: U_WORD
filters:
- multiply: 0.001
lambda: |-
if (id(${esp_id}_ct1_cs).state == 0) {
return x;
} else {
return -x;
}
unit_of_measurement: A
accuracy_decimals: 3
icon: "mdi:alpha-a-circle"
device_class: "current"
state_class: "measurement"
- platform: modbus_controller
modbus_controller_id: smartmeter
id: ${esp_id}_ct2_cs
register_type: holding
address: 0x09
value_type: U_WORD
internal: true
- platform: modbus_controller
name: ${friendly_name} CT2 Current
modbus_controller_id: smartmeter
id: ${esp_id}_ct2_c
register_type: holding
address: 0x0A
value_type: U_WORD
filters:
- multiply: 0.001
lambda: |-
if (id(${esp_id}_ct2_cs).state == 0) {
return x;
} else {
return -x;
}
unit_of_measurement: A
accuracy_decimals: 3
icon: "mdi:alpha-a-circle"
device_class: "current"
state_class: "measurement"
- platform: modbus_controller
modbus_controller_id: smartmeter
id: ${esp_id}_ct3_cs
register_type: holding
address: 0x0B
value_type: U_WORD
internal: true
- platform: modbus_controller
name: ${friendly_name} CT3 Current
modbus_controller_id: smartmeter
id: ${esp_id}_ct3_c
register_type: holding
address: 0x0C
value_type: U_WORD
filters:
- multiply: 0.001
lambda: |-
if (id(${esp_id}_ct3_cs).state == 0) {
return x;
} else {
return -x;
}
unit_of_measurement: A
accuracy_decimals: 3
icon: "mdi:alpha-a-circle"
device_class: "current"
state_class: "measurement"
- platform: modbus_controller
modbus_controller_id: smartmeter
name: ${friendly_name} CT4 Current
id: ${esp_id}_ct4_c
register_type: holding
address: 0x1008
unit_of_measurement: "A"
state_class: "measurement"
device_class: "current"
icon: "mdi:alpha-a-circle-outline"
value_type: U_WORD
accuracy_decimals: 3
filters:
- multiply: 0.001
- platform: modbus_controller
modbus_controller_id: smartmeter
name: ${friendly_name} CT5 Current
id: ${esp_id}_ct5_c
register_type: holding
address: 0x100A
unit_of_measurement: "A"
state_class: "measurement"
device_class: "current"
icon: "mdi:alpha-a-circle-outline"
value_type: U_WORD
accuracy_decimals: 3
filters:
- multiply: 0.001
- platform: modbus_controller
modbus_controller_id: smartmeter
name: ${friendly_name} CT6 Current
id: ${esp_id}_ct6_c
register_type: holding
address: 0x100C
unit_of_measurement: "A"
state_class: "measurement"
device_class: "current"
icon: "mdi:alpha-a-circle-outline"
value_type: U_WORD
accuracy_decimals: 3
filters:
- multiply: 0.001
- platform: modbus_controller
modbus_controller_id: smartmeter
id: ${esp_id}_ct1_ps
register_type: holding
address: 0x0F
value_type: U_WORD
internal: true
- platform: modbus_controller
name: ${friendly_name} CT1 Active Power
modbus_controller_id: smartmeter
id: ${esp_id}_ct1_p
register_type: holding
address: 0x10
value_type: U_WORD
lambda: |-
if (id(${esp_id}_ct1_ps).state == 0) {
return x;
} else {
return -x;
}
unit_of_measurement: "W"
icon: "mdi:home-lightning-bolt"
device_class: "power"
state_class: "measurement"
accuracy_decimals: 0
- platform: modbus_controller
modbus_controller_id: smartmeter
id: ${esp_id}_ct2_ps
register_type: holding
address: 0x11
value_type: U_WORD
internal: true
- platform: modbus_controller
name: ${friendly_name} CT2 Active Power
modbus_controller_id: smartmeter
id: ${esp_id}_ct2_p
register_type: holding
address: 0x12
value_type: U_WORD
lambda: |-
if (id(${esp_id}_ct2_ps).state == 0) {
return x;
} else {
return -x;
}
unit_of_measurement: "W"
icon: "mdi:home-lightning-bolt"
device_class: "power"
state_class: "measurement"
accuracy_decimals: 0
- platform: modbus_controller
modbus_controller_id: smartmeter
id: ${esp_id}_ct3_ps
register_type: holding
address: 0x13
value_type: U_WORD
internal: true
- platform: modbus_controller
name: ${friendly_name} CT3 Active Power
modbus_controller_id: smartmeter
id: ${esp_id}_ct3_p
register_type: holding
address: 0x14
value_type: U_WORD
lambda: |-
if (id(${esp_id}_ct3_ps).state == 0) {
return x;
} else {
return -x;
}
unit_of_measurement: "W"
icon: "mdi:home-lightning-bolt"
device_class: "power"
state_class: "measurement"
accuracy_decimals: 0
- platform: modbus_controller
modbus_controller_id: smartmeter
name: ${friendly_name} CT4 Active Power
id: ${esp_id}_ct4_p
register_type: holding
address: 0x1010
unit_of_measurement: "W"
state_class: "measurement"
device_class: "power"
icon: "mdi:home-lightning-bolt"
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: smartmeter
name: ${friendly_name} CT5 Active Power
id: ${esp_id}_ct5_p
register_type: holding
address: 0x1012
unit_of_measurement: "W"
state_class: "measurement"
device_class: "power"
icon: "mdi:home-lightning-bolt"
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: smartmeter
name: ${friendly_name} CT6 Active Power
id: ${esp_id}_ct6_p
register_type: holding
address: 0x1014
unit_of_measurement: "W"
state_class: "measurement"
device_class: "power"
icon: "mdi:home-lightning-bolt"
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: smartmeter
id: ${esp_id}_taps
register_type: holding
address: 0x0D
value_type: U_WORD
internal: true
- platform: modbus_controller
name: ${friendly_name} Total Active Power
modbus_controller_id: smartmeter
id: ${esp_id}_tap
register_type: holding
address: 0x0E
value_type: U_WORD
lambda: |-
if (id(${esp_id}_taps).state == 0) {
return x;
} else {
return -x;
}
unit_of_measurement: "W"
icon: "mdi:transmission-tower"
device_class: "power"
state_class: "measurement"
accuracy_decimals: 0
- platform: modbus_controller
modbus_controller_id: smartmeter
name: ${friendly_name} Total Active Power 2
id: ${esp_id}_tap2
register_type: holding
address: 0x100E
unit_of_measurement: "W"
state_class: "measurement"
device_class: "power"
icon: "mdi:transmission-tower"
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: smartmeter
name: ${friendly_name} Total Positive Energy
id: ${esp_id}_tpe
register_type: holding
address: 0x2A
unit_of_measurement: "kWh"
state_class: "total_increasing"
device_class: "energy"
icon: "mdi:home-lightning-bolt"
value_type: U_DWORD
accuracy_decimals: 1
filters:
- multiply: 0.01
- platform: modbus_controller
modbus_controller_id: smartmeter
name: ${friendly_name} Total Positive Energy 2
id: ${esp_id}_tpe2
register_type: holding
address: 0x102A
unit_of_measurement: "kWh"
state_class: "total_increasing"
device_class: "energy"
icon: "mdi:home-lightning-bolt"
value_type: U_DWORD
accuracy_decimals: 1
filters:
- multiply: 0.01
- platform: modbus_controller
modbus_controller_id: smartmeter
name: ${friendly_name} Total Negative Energy
id: ${esp_id}_tne
register_type: holding
address: 0x34
unit_of_measurement: "kWh"
state_class: "total_increasing"
device_class: "energy"
icon: "mdi:home-lightning-bolt"
value_type: U_DWORD
accuracy_decimals: 1
filters:
- multiply: 0.01
- platform: modbus_controller
modbus_controller_id: smartmeter
name: ${friendly_name} Hz
id: ${esp_id}_hz
register_type: holding
address: 0x29
unit_of_measurement: "Hz"
state_class: "measurement"
device_class: "frequency"
icon: "mdi:sine-wave"
value_type: U_WORD
accuracy_decimals: 1
filters:
- multiply: 0.01
- platform: copy
source_id: ${esp_id}_wifi_signal
id: ${esp_id}_wifi_signal_hr
name: "${friendly_node_name} WiFi %"
filters:
- lambda: return min(max(2 * (x + 100.0), 0.0), 100.0);
unit_of_measurement: "%"
icon: "mdi:wifi"
entity_category: "diagnostic"
switch:
# Expose an ESP32 restart button to HA
- platform: restart
name: ${friendly_name} ESP32 Restart
id: console_fan_restart
binary_sensor:
- platform: status
name: ${friendly_node_name} Status