forked from Trunks1982/Daikin-Rotex-HPSU-CAN-Seriell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rotex-Daikin-CAN.yaml
1457 lines (1288 loc) · 44.8 KB
/
Rotex-Daikin-CAN.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
############################### Version 1.3.8 #####################################
substitutions:
rx_pin: GPIO48
tx_pin: GPIO47
interval_time: 20s
esphome:
name: rotex
friendly_name: Rotex
esp32:
board: esp32-s3-devkitc-1
framework:
type: arduino
globals:
- id: backup_dhw
type: int
- id: interval_active
type: bool
restore_value: yes
initial_value: 'true'
# Enable logging
logger:
#level: VERBOSE
# Enable Home Assistant API
api:
encryption:
key: !secret api_encryption_key
ota:
platform: esphome
password: !secret ota_password
web_server:
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Rotex Fallback Hotspot"
password: "H3jGqANSa7aL"
captive_portal:
############################## Text Sensoren ########################################
text_sensor:
- platform: template
name: "Betriebsmodus"
id: text_betriebsmodus
lambda: |-
if(id(Betriebsmodus).state == 0){
return {"Notbetrieb"};
} else if (id(Betriebsmodus).state == 1){
return {"Bereitschaft"};
} else if (id(Betriebsmodus).state == 3){
return {"Heizen"};
} else if (id(Betriebsmodus).state == 4){
return {"Absenken"};
} else if (id(Betriebsmodus).state == 5){
return {"Sommer"};
} else if (id(Betriebsmodus).state == 11){
return {"Automatik 1"};
} else if (id(Betriebsmodus).state == 12){
return {"Automatik 2"};
} else if (id(Betriebsmodus).state == 17){
return {"Kühlen"};
} else {
return {"Unknown"};
}
- platform: template
name: "SG-Modus"
id: text_sg_modus
lambda: |-
if(id(SGModus).state == 0){
return {"Aus"};
} else if (id(SGModus).state == 1){
return {"SG Modus 1"};
} else if (id(SGModus).state == 2){
return {"SG Modus 2"};
} else {
return {"Unknown"};
}
- platform: template
name: "Smart-Grid"
id: text_smartgrid
lambda: |-
if(id(Smartgrid).state == 0){
return {"Aus"};
} else if (id(Smartgrid).state == 1){
return {"An"};
} else {
return {"Unknown"};
}
- platform: template
name: "Betriebart"
id: text_betriebsart
lambda: |-
if(id(Betriebsart).state == 0){
return {"Standby"};
} else if (id(Betriebsart).state == 1){
return {"Heizen"};
} else if (id(Betriebsart).state == 2){
return {"Kühlen"};
} else if (id(Betriebsart).state == 3){
return {"Abtauen"};
} else if (id(Betriebsart).state == 4){
return {"Warmwasserbereitung"};
} else {
return {"Unknown"};
}
- platform: template
name: "Fehlercode"
id: text_fehler
lambda: |-
if(id(Fehlercode).state == 0){
return {"kein Fehler"};
} else if (id(Fehlercode).state == 9001){
return {" Fehler E9001 Fehler Rücklauffühler Handbuch S.60"};
} else if (id(Fehlercode).state == 9002){
return {"Fehler E9002 Fehler Vorlauffühler Handbuch S.60"};
} else if (id(Fehlercode).state == 9003){
return {"Fehler E9003 Fehler Frostschutzfunktion Handbuch S.60"};
} else if (id(Fehlercode).state == 9004){
return {"Fehler E9004Fehler Durchfluss Handbuch S.61"};
} else if (id(Fehlercode).state == 9005){
return {"9005 Vorlauftemperaturfühler Handbuch S.60"};
} else if (id(Fehlercode).state == 9006){
return {"9006 Vorlauftemperaturfühler Handbuch S.60"};
} else if (id(Fehlercode).state == 9007){
return {"9007 Platine IG defekt Handbuch S.60"};
} else if (id(Fehlercode).state == 9008){
return {"9008 Kältemitteltemperatur außerhalb des Bereiches Handbuch S.60"};
} else if (id(Fehlercode).state == 9009){
return {"9009 STB Fehler Handbuch S.60"};
} else if (id(Fehlercode).state == 9010){
return {"9010 STB Fehler Handbuch S.60"};
} else if (id(Fehlercode).state == 9011){
return {"9011 Fehler Flowsensor Handbuch S.60"};
} else if (id(Fehlercode).state == 9012){
return {"9012 Fehler Vorlauffühler Handbuch S.60"};
} else if (id(Fehlercode).state == 9013){
return {"9013 Platine AG defekt Handbuch S.60"};
} else if (id(Fehlercode).state == 9014){
return {"9014 P-Kältemittel hoch Handbuch S.61"};
} else if (id(Fehlercode).state == 9015){
return {"9015 P-Kältemittel niedrig Handbuch S.61"};
} else if (id(Fehlercode).state == 9016){
return {"9016 Lastschutz Verdichter Handbuch S.61"};
} else if (id(Fehlercode).state == 9017){
return {"9017 Ventilator blockiert Handbuch S.61"};
} else if (id(Fehlercode).state == 9018){
return {"9018 Expansionsventil Handbuch S.61"};
} else if (id(Fehlercode).state == 9019){
return {"9019 Warmwassertemperatur > 85°C Handbuch S.61"};
} else if (id(Fehlercode).state == 9020){
return {"9020 T-Verdampfer hoch Handbuch S.61"};
} else if (id(Fehlercode).state == 9021){
return {"9021 HPS-System Handbuch S.61"};
} else if (id(Fehlercode).state == 9022){
return {"9022 Fehler AT-Fühler Handbuch S.62"};
} else if (id(Fehlercode).state == 9023){
return {"9023 Fehler WW-Fühler Handbuch S.62"};
} else if (id(Fehlercode).state == 9024){
return {"9024 Drucksensor Handbuch S.62"};
} else if (id(Fehlercode).state == 9025){
return {"9025 Fehler Rücklauffühler Handbuch S.62"};
} else if (id(Fehlercode).state == 9026){
return {"9026 Drucksensor Handbuch S.62"};
} else if (id(Fehlercode).state == 9027){
return {"9027 Aircoil-Fühler Defrost Handbuch S.62"};
} else if (id(Fehlercode).state == 9028){
return {"9028 Aircoil-Fühler temp Handbuch S.62"};
} else if (id(Fehlercode).state == 9029){
return {"9029 Fehler Kältefühler AG handbuch S.62"};
} else if (id(Fehlercode).state == 9030){
return {"9030 Defekt elektrisch Handbuch S.63"};
} else if (id(Fehlercode).state == 9031){
return {"9031 Defekt elektrisch Handbuch S.63"};
} else if (id(Fehlercode).state == 9032){
return {"9032 Defekt elektrisch Handbuch S.63"};
} else if (id(Fehlercode).state == 9033){
return {"9033 Defekt elektrisch Handbuch S.63"};
} else if (id(Fehlercode).state == 9034){
return {"9034 Defekt elektrisch Handbuch S.63"};
} else if (id(Fehlercode).state == 9035){
return {"9035 Platine AG defekt Handbuch S.63"};
} else if (id(Fehlercode).state == 9036){
return {"9036 Defekt elektrisch Handbuch S.63"};
} else if (id(Fehlercode).state == 9037){
return {"9037 Einstellung Leistung Handbuch S.63"};
} else if (id(Fehlercode).state == 9038){
return {"9038 Kältemittel Leck Handbuch S.64"};
} else if (id(Fehlercode).state == 9039){
return {"9039 Unter/Überspannung Handbuch S.64"};
} else if (id(Fehlercode).state == 9041){
return {"9041 Übertragungsfehler Handbuch S.64"};
} else if (id(Fehlercode).state == 9042){
return {"9042 Übertragungsfehler Handbuch S.64"};
} else if (id(Fehlercode).state == 9043){
return {"9043 Übertragungsfehler Handbuch S.64"};
} else if (id(Fehlercode).state == 9044){
return {"9044 Übertragungsfehler Handbuch S.64"};
} else if (id(Fehlercode).state == 75){
return {"75 Fehler Außentemperaturfühler Handbuch S.64"};
} else if (id(Fehlercode).state == 76){
return {"76 Fehler Speichertemperaturfühler Handbuch S.64"};
} else if (id(Fehlercode).state == 81){
return {"81 Kommunikationsfehler Rocon Handbuch S.64"};
} else if (id(Fehlercode).state == 88){
return {"88 Kommunikationsfehler Rocon Handbuch S.6"};
} else if (id(Fehlercode).state == 91){
return {"91 Kommunikationsfehler Rocon Handbuch S.6"};
} else if (id(Fehlercode).state == 128){
return {"128 Fehler Rücklauftemperaturfühler Handbuch S.64"};
} else if (id(Fehlercode).state == 129){
return {"129 Fehler Drucksensor Handbuch S.64"};
} else if (id(Fehlercode).state == 198){
return {"198 Durchflussmessung nicht plausibel Handbuch S.65"};
} else if (id(Fehlercode).state == 200){
return {"200 Kommunikationsfehler Handbuch S.65"};
} else if (id(Fehlercode).state == 8005){
return {"8005 Wasserdruck in Heizungsanlage zu gering Handbuch S.65"};
} else if (id(Fehlercode).state == 8100){
return {"8100 Kommunikation Handbuch S.65"};
} else if (id(Fehlercode).state == 9000){
return {"9000 Interne vorübergehende Meldung Handbuch S65"};
} else if (id(Fehlercode).state == 8006){
return {"8006 Warnung Druckverlust Handbuch S.65"};
} else if (id(Fehlercode).state == 8007){
return {"8007 wasserdruck in Anlage zu hoch Handbuch S.65"};
} else {
return {"Unknown"};
}
- platform: template
name: "Status Kompressor"
id: text_status2
lambda: |-
if(id(status_kessel).state == 0){
return {"Aus"};
} else if (id(status_kessel).state == 1){
return {"An"};
} else {
return {"Unknown"};
}
- platform: template
name: "HK-Funktion"
id: text_hk_funktion
lambda: |-
if(id(hk_funktion).state == 0){
return {"Witterungsgeführt"};
} else if (id(hk_funktion).state == 1){
return {"Fest"};
} else {
return {"Unknown"};
}
- platform: wifi_info
ip_address:
name: ESP IP Address
ssid:
name: ESP Connected SSID
################################ Button und Switch ##############################################
button:
- platform: template
name: Warmwasser bereiten
id: ww_button
icon: "mdi:water-boiler"
on_press:
then:
- globals.set:
id: backup_dhw
value: !lambda return int(id(t_ww_soll).state * 10);
- canbus.send:
can_id: 0x680
data: [0x30, 0x00, 0x13, 0x02, 0xBC, 0x00, 0x00] # 70 Grad Grundeinstellung
- delay: 10s
- canbus.send:
can_id: 0x680
data: !lambda |-
uint16_t temperature = (uint16_t)id(backup_dhw); // Convert to int16be
uint8_t high_byte = temperature >> 8;
uint8_t low_byte = temperature & 0xFF;
return {0x30, 0x00, 0x13, high_byte, low_byte, 0x00, 0x00};
- logger.log: CAN Nachricht wurde gesendet
- platform: restart
name: "Rotex ESP Restart"
switch:
- platform: template
name: "Intervall Abfrage"
optimistic: true
turn_on_action:
- globals.set:
id: interval_active
value: 'true'
turn_off_action:
- globals.set:
id: interval_active
value: 'false'
#switch:
# - platform: gpio
# name: Heizen Thermostat
# pin: GPIO36
# - platform: gpio
# name: Kühlen Thermostat
# pin: GPIO37
############################### Number (Slidermodus) ###############################################
number:
##### Raumsoll 1
- platform: template
name: "Raumsoll 1 Einstellen"
id: r_soll
optimistic: true
mode: box
min_value: 15
max_value: 25
step: 0.1
initial_value: 19
unit_of_measurement: "°C"
icon: "mdi:thermometer-lines"
device_class: "temperature"
set_action:
- delay: 250ms
- canbus.send:
can_id: 0x680
data: !lambda |-
uint16_t temperature = (uint16_t)(x * 10); // Convert to int16be
uint8_t high_byte = temperature >> 8;
uint8_t low_byte = temperature & 0xFF;
return { 0x30, 0x00, 0x05, high_byte, low_byte, 0x00, 0x00 };
#### Heizkurve
- platform: template
name: "Heizkurve Einstellen"
id: set_heizkurve
optimistic: true
mode: box
min_value: 0
max_value: 2.55
step: 0.01
initial_value: 0.48
set_action:
- delay: 250ms
- canbus.send:
can_id: 0x680
data: !lambda |-
uint16_t hk = (uint16_t)(x * 100); // Convert to int16be
uint8_t high_byte = hk >> 8;
uint8_t low_byte = hk & 0xFF;
return { 0x30, 0x00, 0xFA, 0x01, 0x0E, high_byte, low_byte };
##### Warmwasser
- platform: template
name: "WW Einstellen"
id: ww_soll
optimistic: true
mode: box
min_value: 35
max_value: 70
step: 1
initial_value: 45
unit_of_measurement: "°C"
icon: "mdi:thermometer-lines"
device_class: "temperature"
set_action:
- delay: 250ms
- canbus.send:
can_id: 0x680
data: !lambda |-
uint16_t temperature = (uint16_t)(x * 10); // Convert to int16be
uint8_t high_byte = temperature >> 8;
uint8_t low_byte = temperature & 0xFF;
return { 0x30, 0x00, 0x13, high_byte, low_byte, 0x00, 0x00 };
##### Min VL
- platform: template
name: "Min VL Einstellen"
id: min_vl_set
optimistic: true
mode: box
min_value: 25
max_value: 40
step: 1
initial_value: 25
unit_of_measurement: "°C"
icon: "mdi:thermometer-lines"
device_class: "temperature"
set_action:
- delay: 250ms
- canbus.send:
can_id: 0x680
data: !lambda |-
uint16_t temperature = (uint16_t)(x * 10); // Convert to int16be
uint8_t high_byte = temperature >> 8;
uint8_t low_byte = temperature & 0xFF;
return { 0x30, 0x00, 0xFA, 0x01, 0x2B, high_byte, low_byte };
##### Max VL Set
- platform: template
name: "Max VL Einstellen"
id: max_vl_set
optimistic: true
mode: box
min_value: 25
max_value: 60
step: 1
initial_value: 35
unit_of_measurement: "°C"
icon: "mdi:thermometer-lines"
device_class: "temperature"
set_action:
- delay: 250ms
- canbus.send:
can_id: 0x680
data: !lambda |-
uint16_t temperature = (uint16_t)(x * 10); // Convert to int16be
uint8_t high_byte = temperature >> 8;
uint8_t low_byte = temperature & 0xFF;
return { 0x30, 0x00, 0x28, high_byte, low_byte, 0x00, 0x00, };
##### T Vorlauf Tag Set
- platform: template
name: "T Vorlauf Tag Einstellen"
id: t_vorlauf_tag_set
optimistic: true
mode: box
min_value: 25
max_value: 60
step: 1
initial_value: 35
unit_of_measurement: "°C"
icon: "mdi:thermometer-lines"
device_class: "temperature"
set_action:
- delay: 250ms
- canbus.send:
can_id: 0x680
data: !lambda |-
uint16_t temperature = (uint16_t)(x * 10); // Convert to int16be
uint8_t high_byte = temperature >> 8;
uint8_t low_byte = temperature & 0xFF;
return { 0x30, 0x00, 0xFA, 0x01, 0x29, high_byte, low_byte, };
####################### Select Tasten ###############################
#Set Betriebsmodus
select:
- platform: template
name: "Betriebsmodus setzen"
id: betrieb
optimistic: true
options:
- "Heizen"
- "Bereitschaft"
- "Absenken"
- "Sommer"
- "Kühlen"
- "Automatik 1"
- "Automatik 2"
initial_option: Heizen
set_action:
then:
- delay: 250ms
- canbus.send:
can_id: 0x680
data: !lambda |-
static const std::map<std::string, uint8_t> mode_map = {
{"Heizen", 3},
{"Bereitschaft", 1},
{"Absenken", 4},
{"Sommer", 5},
{"Kühlen", 17},
{"Automatik 1", 11},
{"Automatik 2", 12}
};
return {0x30, 0x00, 0xFA, 0x01, 0x12, mode_map.at(x), 0x00};
#Set HK Funktion
- platform: template
name: "HK Funktion"
id: hk
optimistic: true
options:
- "Witterungsgeführt"
- "Fest"
initial_option: Witterungsgeführt
set_action:
then:
- delay: 250ms
- canbus.send:
can_id: 0x680
data: !lambda |-
static const std::map<std::string, uint8_t> mode_map = {
{"Witterungsgeführt", 0},
{"Fest", 1}
};
return {0x30, 0x00, 0xFA, 0x01, 0x41, 0x00, mode_map.at(x)};
#Set SG Funktion
- platform: template
name: "SG Modus"
id: sg
optimistic: true
options:
- "Aus"
- "SG Modus 1"
- "SG Modus 2"
initial_option: Aus
set_action:
then:
- delay: 250ms
- canbus.send:
can_id: 0x680
data: !lambda |-
static const std::map<std::string, uint8_t> mode_map = {
{"Aus", 0},
{"SG Modus 1", 1},
{"SG Modus 2", 2}
};
return {0x30, 0x00, 0xFA, 0x06, 0x94, 0x00, mode_map.at(x)};
#Set Smart Grid
- platform: template
name: "Smart Grid"
id: smartgrid
optimistic: true
options:
- "Aus"
- "An"
initial_option: Aus
set_action:
then:
- delay: 250ms
- canbus.send:
can_id: 0x680
data: !lambda |-
static const std::map<std::string, uint8_t> mode_map = {
{"Aus", 0},
{"An", 1}
};
return {0x30, 0x00, 0xFA, 0x06, 0x93, 0x00, mode_map.at(x)};
################################# Alle Sensoren #####################################
sensor:
- platform: wifi_signal
name: "WiFi Signal Sensor"
update_interval: 60s
- platform: template
name: "Fehlercode"
id: Fehlercode
internal: true
unit_of_measurement: ""
icon: "mdi:thermometer-lines"
state_class: "measurement"
accuracy_decimals: 0
- platform: template
name: "SG Modus"
id: SGModus
internal: true
unit_of_measurement: ""
icon: "mdi:thermometer-lines"
state_class: "measurement"
accuracy_decimals: 0
- platform: template
name: "Smart Grid"
id: Smartgrid
internal: true
unit_of_measurement: ""
icon: "mdi:thermometer-lines"
state_class: "measurement"
accuracy_decimals: 0
- platform: template
name: "Heizkurve"
id: heizkurve
unit_of_measurement: ""
device_class: "temperature"
icon: "mdi:thermometer-lines"
state_class: "measurement"
accuracy_decimals: 2
- platform: template
name: "Thermische Leistung"
device_class: "power"
unit_of_measurement: "kW"
accuracy_decimals: 2
update_interval: 10s
lambda: |-
if (id(text_betriebsart).state == "Warmwasserbereitung") {
return ((id(TV).state - id(ruecklauf).state) * (4.19 * id(durchfluss).state)) / 3600;
} else if (id(text_betriebsart).state == "Heizen") {
return ((id(TVBH).state - id(ruecklauf).state) * (4.19 * id(durchfluss).state)) / 3600;
} else {
return 0.0;
}
- platform: template
name: "Raumsoll 1"
id: raumsoll1
unit_of_measurement: "°C"
icon: "mdi:thermometer-lines"
device_class: "temperature"
state_class: "measurement"
accuracy_decimals: 1
- platform: template
name: "Status Kessel"
id: status_kessel
internal: true
icon: "mdi:thermometer-lines"
accuracy_decimals: 0
- platform: template
name: "Wasserdruck"
id: Wasserdruck
unit_of_measurement: "bar"
icon: "mdi:thermometer-lines"
device_class: "pressure"
state_class: "measurement"
accuracy_decimals: 2
- platform: template
name: "Erzeugte Energie Gesamt"
id: Erzeugte_Energie_Gesamt
unit_of_measurement: "kWh"
icon: "mdi:thermometer-lines"
device_class: "ENERGY_STORAGE"
state_class: "measurement"
accuracy_decimals: 0
- platform: template
name: "EHS fuer CH"
id: Qchhp
unit_of_measurement: "kWh"
icon: "mdi:thermometer-lines"
device_class: "ENERGY_STORAGE"
state_class: "measurement"
accuracy_decimals: 0
- platform: template
name: "Umwaelzpumpe"
id: Umwaelzpumpe
unit_of_measurement: "%"
icon: "mdi:thermometer-lines"
device_class: "battery"
state_class: "measurement"
accuracy_decimals: 0
- platform: template
name: "Betriebsmodus"
internal: true
id: Betriebsmodus
unit_of_measurement: ""
icon: "mdi:thermometer-lines"
device_class: "temperature"
state_class: "measurement"
accuracy_decimals: 0
- platform: template
name: "Betriebsart"
id: Betriebsart
internal: true
unit_of_measurement: ""
icon: "mdi:thermometer-lines"
device_class: "temperature"
state_class: "measurement"
accuracy_decimals: 0
- platform: template
name: "T-WW-Soll1"
id: t_ww_soll
unit_of_measurement: "°C"
icon: "mdi:thermometer-lines"
device_class: "temperature"
state_class: "measurement"
accuracy_decimals: 1
- platform: template
name: "Vorlauf Soll"
id: vl_soll
unit_of_measurement: "°C"
icon: "mdi:thermometer-lines"
device_class: "temperature"
state_class: "measurement"
accuracy_decimals: 1
- platform: template
name: "Aussentemperatur"
id: temperature_outside
unit_of_measurement: "°C"
icon: "mdi:thermometer-lines"
device_class: "temperature"
state_class: "measurement"
accuracy_decimals: 1
- platform: template
name: "Warmwassertemperatur"
id: temperature_water
unit_of_measurement: "°C"
icon: "mdi:thermometer-lines"
device_class: "temperature"
state_class: "measurement"
accuracy_decimals: 1
- platform: template
name: "Vorlauftemperatur Heizung (TVBH)"
id: TVBH
unit_of_measurement: "°C"
icon: "mdi:waves-arrow-right"
device_class: "temperature"
state_class: "measurement"
accuracy_decimals: 1
- platform: template
name: "Heizkreis Vorlauf (TV)"
id: TV
unit_of_measurement: "°C"
icon: "mdi:waves-arrow-right"
device_class: "temperature"
state_class: "measurement"
accuracy_decimals: 1
- platform: template
name: "Ruecklauftemperatur Heizung"
id: ruecklauf
unit_of_measurement: "°C"
icon: "mdi:waves-arrow-left"
device_class: "temperature"
state_class: "measurement"
accuracy_decimals: 1
- platform: template
name: "Durchfluss"
id: durchfluss
unit_of_measurement: "ltr/h"
icon: "mdi:waves-arrow-left"
state_class: "measurement"
accuracy_decimals: 0
- platform: template
name: "Laufzeit Compressor"
id: rt_compressor
unit_of_measurement: "h"
icon: "mdi:icon-time"
state_class: "measurement"
accuracy_decimals: 0
- platform: template
name: "Laufzeit Pump"
id: rt_pump
unit_of_measurement: "h"
icon: "mdi:icon-time"
state_class: "measurement"
accuracy_decimals: 0
- platform: template
name: "BPV"
id: BPV
unit_of_measurement: "%"
icon: "mdi:waves-arrow-left"
accuracy_decimals: 0
- platform: template
name: "Min VL Soll"
internal: false
id: min_vl_soll
unit_of_measurement: "°C"
icon: "mdi:waves-arrow-left"
state_class: "measurement"
accuracy_decimals: 0
- platform: template
name: "Max VL Soll"
internal: false
id: max_vl_soll
unit_of_measurement: "°C"
icon: "mdi:waves-arrow-left"
state_class: "measurement"
accuracy_decimals: 0
- platform: template
name: "HK-Funktion"
internal: true
id: hk_funktion
unit_of_measurement: ""
icon: "mdi:waves-arrow-left"
state_class: "measurement"
accuracy_decimals: 0
- platform: template
name: "Spreizung MOD HZ"
internal: false
id: spreizung_mod_hz
unit_of_measurement: "K"
icon: "mdi:waves-arrow-left"
state_class: "measurement"
accuracy_decimals: 0
- platform: template
name: "Spreizung MOD WW"
internal: false
id: spreizung_mod_ww
unit_of_measurement: "K"
icon: "mdi:waves-arrow-left"
state_class: "measurement"
accuracy_decimals: 0
- platform: template
name: "T Vorlauf Tag"
internal: false
id: t_vorlauf_tag
unit_of_measurement: "°C"
icon: "mdi:waves-arrow-left"
state_class: "measurement"
accuracy_decimals: 0
########################### CAN Nachrichten abfragen #################################################
interval:
- interval: ${interval_time}
then:
if:
condition:
- lambda: 'return id(interval_active);'
then:
#Status Kessel
- canbus.send:
data: [0x31, 0x00, 0xFA, 0x0A, 0x8C, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
#Umwälzpumpe
- canbus.send:
data: [0x31, 0x00, 0xFA, 0xC0, 0xF7, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0xFA, 0x01, 0x12, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0xFA, 0xC0, 0xF6, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0xFA, 0xC0, 0xFB, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0xFA, 0x01, 0xDA, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0xFA, 0x06, 0xA4, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0xFA, 0xC1, 0x02, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0xFA, 0xC0, 0xFC, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
#Rücklauftemperatur Hzg - ok 1/10
- canbus.send:
data: [0x31, 0x00, 0xFA, 0xC1, 0x00, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0xfa, 0x00, 0x0e, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
#Warmwasser Temperatur °C et dec value - ok /10
- canbus.send:
data: [0x31, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0xFA, 0x06, 0xA5, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0xfa, 0x01, 0x2B, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0xFA, 0x01, 0x41, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0xFA, 0x01, 0x29, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0xFA, 0x13, 0x88, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
# - interval: 300s
# then:
# if:
# condition:
# - lambda: 'return id(interval_active);'
# then:
- canbus.send:
data: [0x31, 0x00, 0xFA, 0x09, 0x30, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
#Qchhp
- canbus.send:
data: [0x31, 0x00, 0xFA, 0x09, 0x20, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0xFA, 0xC0, 0xFF, 0x00, 0x00]
can_id: 0x680
- delay: 500ms
- canbus.send:
data: [0x31, 0x00, 0xFA, 0x01, 0x0E, 0x00, 0x00]
can_id: 0x680