-
Notifications
You must be signed in to change notification settings - Fork 0
/
homeassistant.yaml
1854 lines (1776 loc) · 49.1 KB
/
homeassistant.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
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
substitutions:
max_current_range1: "50"
max_current_range2: "20"
max_current_range3: "20"
max_current_range4: "20"
max_current_range5: "20"
max_current_range6: "20"
max_current_range7: "30"
max_current_range8: "50"
max_current_range9: "30"
max_current_range10: "20"
max_current_range11: "50"
max_current_range12: "20"
max_current_range13: "100"
max_current_range14: "20"
max_current_range15: "20"
max_current_range16: "20"
max_current_range17: "20"
max_current_range18: "50"
max_current_range19: "20"
max_current_range20: "20"
max_current_range21: "50"
max_current_range22: "20"
max_current_range23: "20"
max_current_range24: "20"
max_current_range25: "20"
max_current_range26: "20"
max_current_range27: "20"
max_current_range28: "50"
max_current_range29: "20"
max_current_range30: "20"
esphome:
name: kinconym30
friendly_name: KinconyM30
esp32:
board: esp32dev
framework:
type: arduino
# Enable logging
logger:
# baud_rate: 0
# Enable Home Assistant API
api:
encryption:
key: "!secret haApi_password"
ota:
platform: esphome
password: "!secret ota_password"
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Kinconym30 Fallback Hotspot"
password: "fWwvGvzRFIe7"
uart:
id: modbus_uart
rx_pin: 32
tx_pin: 33
baud_rate: 115200
stop_bits: 1
data_bits: 8
parity: NONE
modbus:
id: modbus_hub
uart_id: modbus_uart
modbus_controller:
- id: modbus_hub_m30
address: 1
modbus_id: modbus_hub
update_interval: 10s
sensor:
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 100
register_type: holding
name: m30_1_current_1
id: m30_1_current_1
unit_of_measurement: A
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.00098
on_value:
- then:
- lambda: |-
float current = id(m30_1_current_1).state;
float red = (current - 0.0) / ${max_current_range1};
float green = (${max_current_range1} - current) / ${max_current_range1};
float blue = 0.0;
auto call = id(M30_LED1).turn_on();
call.set_brightness(0.6);
call.set_rgb(red, green, blue);
call.set_color_mode(ColorMode::RGB);
call.perform();
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 101
register_type: holding
name: m30_1_current_2
id: m30_1_current_2
unit_of_measurement: A
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.00098
on_value:
- then:
- lambda: |-
float current = id(m30_1_current_2).state;
float red = (current - 0.0) / ${max_current_range2};
float green = (${max_current_range2} - current) / ${max_current_range2};
float blue = 0.0;
auto call = id(M30_LED2).turn_on();
call.set_brightness(0.6);
call.set_rgb(red, green, blue);
call.set_color_mode(ColorMode::RGB);
call.perform();
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 102
register_type: holding
name: m30_1_current_3
id: m30_1_current_3
unit_of_measurement: A
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.00098
on_value:
- then:
- lambda: |-
float current = id(m30_1_current_3).state;
float red = (current - 0.0) / ${max_current_range3};
float green = (${max_current_range3} - current) / ${max_current_range3};
float blue = 0.0;
auto call = id(M30_LED3).turn_on();
call.set_brightness(0.6);
call.set_rgb(red, green, blue);
call.set_color_mode(ColorMode::RGB);
call.perform();
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 103
register_type: holding
name: m30_1_current_4
id: m30_1_current_4
unit_of_measurement: A
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.00098
on_value:
- then:
- lambda: |-
float current = id(m30_1_current_4).state;
float red = (current - 0.0) / ${max_current_range4};
float green = (${max_current_range4} - current) / ${max_current_range4};
float blue = 0.0;
auto call = id(M30_LED4).turn_on();
call.set_brightness(0.6);
call.set_rgb(red, green, blue);
call.set_color_mode(ColorMode::RGB);
call.perform();
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 104
register_type: holding
name: m30_1_current_5
id: m30_1_current_5
unit_of_measurement: A
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.00098
on_value:
- then:
- lambda: |-
float current = id(m30_1_current_5).state;
float red = (current - 0.0) / ${max_current_range5};
float green = (${max_current_range5} - current) / ${max_current_range5};
float blue = 0.0;
auto call = id(M30_LED5).turn_on();
call.set_brightness(0.6);
call.set_rgb(red, green, blue);
call.set_color_mode(ColorMode::RGB);
call.perform();
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 105
register_type: holding
name: m30_1_current_6
id: m30_1_current_6
unit_of_measurement: A
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.00098
on_value:
- then:
- lambda: |-
float current = id(m30_1_current_6).state;
float red = (current - 0.0) / ${max_current_range6};
float green = (${max_current_range6} - current) / ${max_current_range6};
float blue = 0.0;
auto call = id(M30_LED6).turn_on();
call.set_brightness(0.6);
call.set_rgb(red, green, blue);
call.set_color_mode(ColorMode::RGB);
call.perform();
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 106
register_type: holding
name: m30_1_current_7
id: m30_1_current_7
unit_of_measurement: A
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.00098
on_value:
- then:
- lambda: |-
float current = id(m30_1_current_7).state;
float red = (current - 0.0) / ${max_current_range7};
float green = (${max_current_range7} - current) / ${max_current_range7};
float blue = 0.0;
auto call = id(M30_LED7).turn_on();
call.set_brightness(0.6);
call.set_rgb(red, green, blue);
call.set_color_mode(ColorMode::RGB);
call.perform();
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 107
register_type: holding
name: m30_1_current_8
id: m30_1_current_8
unit_of_measurement: A
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.00098
on_value:
- then:
- lambda: |-
float current = id(m30_1_current_8).state;
float red = (current - 0.0) / ${max_current_range8};
float green = (${max_current_range8} - current) / ${max_current_range8};
float blue = 0.0;
auto call = id(M30_LED8).turn_on();
call.set_brightness(0.6);
call.set_rgb(red, green, blue);
call.set_color_mode(ColorMode::RGB);
call.perform();
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 108
register_type: holding
name: m30_1_current_9
id: m30_1_current_9
unit_of_measurement: A
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.00098
on_value:
- then:
- lambda: |-
float current = id(m30_1_current_9).state;
float red = (current - 0.0) / ${max_current_range9};
float green = (${max_current_range9} - current) / ${max_current_range9};
float blue = 0.0;
auto call = id(M30_LED9).turn_on();
call.set_brightness(0.6);
call.set_rgb(red, green, blue);
call.set_color_mode(ColorMode::RGB);
call.perform();
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 109
register_type: holding
name: m30_1_current_10
id: m30_1_current_10
unit_of_measurement: L
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.0005
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 110
register_type: holding
name: m30_1_voltage
id: m30_1_voltage
unit_of_measurement: V
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.01
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 111
register_type: holding
name: m30_1_watt_1
id: m30_1_watt_1
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 112
register_type: holding
name: m30_1_watt_2
id: m30_1_watt_2
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 113
register_type: holding
name: m30_1_watt_3
id: m30_1_watt_3
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 114
register_type: holding
name: m30_1_watt_4
id: m30_1_watt_4
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 115
register_type: holding
name: m30_1_watt_5
id: m30_1_watt_5
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 116
register_type: holding
name: m30_1_watt_6
id: m30_1_watt_6
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 117
register_type: holding
name: m30_1_watt_7
id: m30_1_watt_7
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 118
register_type: holding
name: m30_1_watt_8
id: m30_1_watt_8
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 119
register_type: holding
name: m30_1_watt_9
id: m30_1_watt_9
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 120
register_type: holding
name: m30_1_watt_10
id: m30_1_watt_10
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 121
register_type: holding
name: m30_1_energy_1
id: m30_1_energy_1
unit_of_measurement: kWh
device_class: energy
state_class: total_increasing
accuracy_decimals: 1
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 122
register_type: holding
name: m30_1_energy_2
id: m30_1_energy_2
unit_of_measurement: kWh
device_class: energy
state_class: total_increasing
accuracy_decimals: 1
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 123
register_type: holding
name: m30_1_energy_3
id: m30_1_energy_3
unit_of_measurement: kWh
device_class: energy
state_class: total_increasing
accuracy_decimals: 1
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 124
register_type: holding
name: m30_1_energy_4
id: m30_1_energy_4
unit_of_measurement: kWh
device_class: energy
state_class: total_increasing
accuracy_decimals: 1
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 125
register_type: holding
name: m30_1_energy_5
id: m30_1_energy_5
unit_of_measurement: kWh
device_class: energy
state_class: total_increasing
accuracy_decimals: 1
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 126
register_type: holding
name: m30_1_energy_6
id: m30_1_energy_6
unit_of_measurement: kWh
device_class: energy
state_class: total_increasing
accuracy_decimals: 1
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 127
register_type: holding
name: m30_1_energy_7
id: m30_1_energy_7
unit_of_measurement: kWh
device_class: energy
state_class: total_increasing
accuracy_decimals: 1
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 128
register_type: holding
name: m30_1_energy_8
id: m30_1_energy_8
unit_of_measurement: kWh
device_class: energy
state_class: total_increasing
accuracy_decimals: 1
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 129
register_type: holding
name: m30_1_energy_9
id: m30_1_energy_9
unit_of_measurement: kWh
device_class: energy
state_class: total_increasing
accuracy_decimals: 1
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 130
register_type: holding
name: m30_1_energy_10
id: m30_1_energy_10
unit_of_measurement: kWh
device_class: energy
state_class: total_increasing
accuracy_decimals: 1
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 131
register_type: holding
name: m30_1_energy_sum
id: m30_1_energy_sum
unit_of_measurement: kWh
device_class: energy
state_class: total_increasing
accuracy_decimals: 1
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 132
register_type: holding
name: m30_1_period
id: m30_1_period
unit_of_measurement: Hz
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.01
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 133
register_type: holding
name: m30_1_tps_1
id: m30_1_tps_1
unit_of_measurement: °C
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
# - platform: modbus_controller
# modbus_controller_id: modbus_hub_m30
# address: 134
# register_type: holding
# name: m30_1_tps_2
# id: m30_1_tps_2
# unit_of_measurement: °C
# accuracy_decimals: 1
# value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 200
register_type: holding
name: m30_2_current_1
id: m30_2_current_1
unit_of_measurement: A
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.00098
on_value:
- then:
- lambda: |-
float current = id(m30_2_current_1).state;
float red = (current - 0.0) / ${max_current_range11};
float green = (${max_current_range11} - current) / ${max_current_range11};
float blue = 0.0;
auto call = id(M30_LED11).turn_on();
call.set_brightness(0.6);
call.set_rgb(red, green, blue);
call.set_color_mode(ColorMode::RGB);
call.perform();
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 201
register_type: holding
name: m30_2_current_2
id: m30_2_current_2
unit_of_measurement: A
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.00098
on_value:
- then:
- lambda: |-
float current = id(m30_2_current_2).state;
float red = (current - 0.0) / ${max_current_range12};
float green = (${max_current_range12} - current) / ${max_current_range12};
float blue = 0.0;
auto call = id(M30_LED12).turn_on();
call.set_brightness(0.6);
call.set_rgb(red, green, blue);
call.set_color_mode(ColorMode::RGB);
call.perform();
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 202
register_type: holding
name: m30_2_current_3
id: m30_2_current_3
unit_of_measurement: A
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.00098
on_value:
- then:
- lambda: |-
float current = id(m30_2_current_3).state;
float red = (current - 0.0) / ${max_current_range13};
float green = (${max_current_range13} - current) / ${max_current_range13};
float blue = 0.0;
auto call = id(M30_LED13).turn_on();
call.set_brightness(0.6);
call.set_rgb(red, green, blue);
call.set_color_mode(ColorMode::RGB);
call.perform();
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 203
register_type: holding
name: m30_2_current_4
id: m30_2_current_4
unit_of_measurement: A
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.00098
on_value:
- then:
- lambda: |-
float current = id(m30_2_current_4).state;
float red = (current - 0.0) / ${max_current_range14};
float green = (${max_current_range14} - current) / ${max_current_range14};
float blue = 0.0;
auto call = id(M30_LED14).turn_on();
call.set_brightness(0.6);
call.set_rgb(red, green, blue);
call.set_color_mode(ColorMode::RGB);
call.perform();
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 204
register_type: holding
name: m30_2_current_5
id: m30_2_current_5
unit_of_measurement: A
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.00098
on_value:
- then:
- lambda: |-
float current = id(m30_2_current_5).state;
float red = (current - 0.0) / ${max_current_range15};
float green = (${max_current_range15} - current) / ${max_current_range15};
float blue = 0.0;
auto call = id(M30_LED15).turn_on();
call.set_brightness(0.6);
call.set_rgb(red, green, blue);
call.set_color_mode(ColorMode::RGB);
call.perform();
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 205
register_type: holding
name: m30_2_current_6
id: m30_2_current_6
unit_of_measurement: A
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.00098
on_value:
- then:
- lambda: |-
float current = id(m30_2_current_6).state;
float red = (current - 0.0) / ${max_current_range16};
float green = (${max_current_range16} - current) / ${max_current_range16};
float blue = 0.0;
auto call = id(M30_LED16).turn_on();
call.set_brightness(0.6);
call.set_rgb(red, green, blue);
call.set_color_mode(ColorMode::RGB);
call.perform();
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 206
register_type: holding
name: m30_2_current_7
id: m30_2_current_7
unit_of_measurement: A
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.00098
on_value:
- then:
- lambda: |-
float current = id(m30_2_current_7).state;
float red = (current - 0.0) / ${max_current_range17};
float green = (${max_current_range17} - current) / ${max_current_range17};
float blue = 0.0;
auto call = id(M30_LED17).turn_on();
call.set_brightness(0.6);
call.set_rgb(red, green, blue);
call.set_color_mode(ColorMode::RGB);
call.perform();
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 207
register_type: holding
name: m30_2_current_8
id: m30_2_current_8
unit_of_measurement: A
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.00098
on_value:
- then:
- lambda: |-
float current = id(m30_2_current_8).state;
float red = (current - 0.0) / ${max_current_range18};
float green = (${max_current_range18} - current) / ${max_current_range18};
float blue = 0.0;
auto call = id(M30_LED18).turn_on();
call.set_brightness(0.6);
call.set_rgb(red, green, blue);
call.set_color_mode(ColorMode::RGB);
call.perform();
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 208
register_type: holding
name: m30_2_current_9
id: m30_2_current_9
unit_of_measurement: A
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.00098
on_value:
- then:
- lambda: |-
float current = id(m30_2_current_9).state;
float red = (current - 0.0) / ${max_current_range19};
float green = (${max_current_range19} - current) / ${max_current_range19};
float blue = 0.0;
auto call = id(M30_LED19).turn_on();
call.set_brightness(0.6);
call.set_rgb(red, green, blue);
call.set_color_mode(ColorMode::RGB);
call.perform();
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 209
register_type: holding
name: m30_2_current_10
id: m30_2_current_10
unit_of_measurement: L
accuracy_decimals: 3
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 210
register_type: holding
name: m30_2_voltage
id: m30_2_voltage
unit_of_measurement: V
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.01
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 211
register_type: holding
name: m30_2_watt_1
id: m30_2_watt_1
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 212
register_type: holding
name: m30_2_watt_2
id: m30_2_watt_2
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 213
register_type: holding
name: m30_2_watt_3
id: m30_2_watt_3
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 214
register_type: holding
name: m30_2_watt_4
id: m30_2_watt_4
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 215
register_type: holding
name: m30_2_watt_5
id: m30_2_watt_5
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 216
register_type: holding
name: m30_2_watt_6
id: m30_2_watt_6
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 217
register_type: holding
name: m30_2_watt_7
id: m30_2_watt_7
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 218
register_type: holding
name: m30_2_watt_8
id: m30_2_watt_8
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 219
register_type: holding
name: m30_2_watt_9
id: m30_2_watt_9
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 220
register_type: holding
name: m30_2_watt_10
id: m30_2_watt_10
unit_of_measurement: W
accuracy_decimals: 1
value_type: U_WORD
filters:
- multiply: 0.1
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 221
register_type: holding
name: m30_2_energy_1
id: m30_2_energy_1
unit_of_measurement: kWh
device_class: energy
state_class: total_increasing
accuracy_decimals: 1
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 222
register_type: holding
name: m30_2_energy_2
id: m30_2_energy_2
unit_of_measurement: kWh
device_class: energy
state_class: total_increasing
accuracy_decimals: 1
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 223
register_type: holding
name: m30_2_energy_3
id: m30_2_energy_3
unit_of_measurement: kWh
device_class: energy
state_class: total_increasing
accuracy_decimals: 1
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 224
register_type: holding
name: m30_2_energy_4
id: m30_2_energy_4
unit_of_measurement: kWh
device_class: energy
state_class: total_increasing
accuracy_decimals: 1
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 225
register_type: holding
name: m30_2_energy_5
id: m30_2_energy_5
unit_of_measurement: kWh
device_class: energy
state_class: total_increasing
accuracy_decimals: 1
value_type: U_WORD
- platform: modbus_controller
modbus_controller_id: modbus_hub_m30
address: 226
register_type: holding
name: m30_2_energy_6
id: m30_2_energy_6
unit_of_measurement: kWh