-
Notifications
You must be signed in to change notification settings - Fork 4
/
ha_dashboard.yaml
569 lines (569 loc) · 22.7 KB
/
ha_dashboard.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
views:
- title: AIO
path: aio
panel: true
cards:
- type: custom:floorplan-card
full_height: false
config:
image: /local/froeling/froeling_aio.svg
cache: false
stylesheet: /local/froeling/home.css
defaults:
hover_action: hover-info
tap_action: more-info
rules:
- entities:
- sensor.froeling_pelletlager_restbestand
- sensor.froeling_resetierbarer_t_zaehler
tap_action: false
state_action:
action: call-service
service: floorplan.text_set
service_data: ${entity.state + "t"}
- entities:
- sensor.froeling_abgastemperatur
- sensor.froeling_kesseltemperatur
- sensor.froeling_puffer_1_temperatur_oben
- sensor.froeling_puffer_1_temperatur_unten
- sensor.froeling_aussentemperatur
- sensor.froeling_hk1_vorlauf_isttemperatur
- >-
sensor.froeling_ruecklauftemperatur_an_der_zirkulations_leitung
- climate.wohnzimmer
tap_action: false
state_action:
action: call-service
service: floorplan.text_set
service_data: ${entity.state + "°C"}
- entities:
- sensor.froeling_restsauerstoffgehalt
- sensor.froeling_puffer_1_pufferpumpen_ansteuerung
- sensor.froeling_saugzug_ansteuerung
- sensor.froeling_fuellstand_im_pelletsbehaelter
- sensor.froeling_puffer_1_ladezustand
- sensor.froeling_drehzahl_der_zirkulations_pumpe
tap_action: false
state_action:
action: call-service
service: floorplan.text_set
service_data: ${entity.state + "%"}
- entities:
- >-
sensor.froeling_verbleibende_heizstunden_bis_zur_asche_entleeren_warnung
tap_action: false
state_action:
action: call-service
service: floorplan.text_set
service_data: ${entity.state + "h"}
- entities:
- sensor.froeling_kesselzustand
tap_action: false
state_action:
action: call-service
service: floorplan.class_set
service_data:
class: |-
${
(entity.state == "Betriebsbereit") ? "fill-grey" :
(entity.state == "Heizen") ? "fill-red" :
(entity.state == "SH Heizen") ? "fill-red" :
(entity.state == "Anheizen") ? "fill-orange" :
"fill-grey"
}
- entities:
- >-
binary_sensor.froeling_puffer_1_pufferpumpen_ansteuerung_an_aus
- binary_sensor.froeling_zirkulationspumpe_an_aus
- binary_sensor.froeling_hk1_pumpe_an_aus
tap_action: false
state_action:
action: call-service
service: floorplan.class_set
service_data:
class: '${(entity.state == "on") ? "fill-green" : "fill-grey"}'
- title: Kessel
badges: []
cards:
- type: horizontal-stack
cards:
- type: custom:floorplan-card
full_height: false
config:
image: /local/froeling/froeling_kessel.svg
cache: false
stylesheet: /local/froeling/home.css
defaults:
hover_action: hover-info
tap_action: more-info
rules:
- entities:
- sensor.froeling_abgastemperatur
- sensor.froeling_kesseltemperatur
tap_action: false
state_action:
action: call-service
service: floorplan.text_set
service_data: ${entity.state + "°C"}
- entities:
- sensor.froeling_restsauerstoffgehalt
- sensor.froeling_puffer_1_pufferpumpen_ansteuerung
- sensor.froeling_saugzug_ansteuerung
- sensor.froeling_fuellstand_im_pelletsbehaelter
tap_action: false
state_action:
action: call-service
service: floorplan.text_set
service_data: ${entity.state + "%"}
- entities:
- >-
sensor.froeling_verbleibende_heizstunden_bis_zur_asche_entleeren_warnung
tap_action: false
state_action:
action: call-service
service: floorplan.text_set
service_data: ${entity.state + "h"}
- entities:
- sensor.froeling_kesselzustand
tap_action: false
state_action:
action: call-service
service: floorplan.class_set
service_data:
class: |-
${
(entity.state == "Betriebsbereit") ? "fill-grey" :
(entity.state == "Heizen") ? "fill-red" :
(entity.state == "SH Heizen") ? "fill-red" :
(entity.state == "Anheizen") ? "fill-orange" :
"fill-grey"
}
- entities:
- >-
binary_sensor.froeling_puffer_1_pufferpumpen_ansteuerung_an_aus
tap_action: false
state_action:
action: call-service
service: floorplan.class_set
service_data:
class: '${(entity.state == "on") ? "fill-green" : "fill-grey"}'
- type: entities
entities:
- entity: sensor.froeling_kesseltemperatur
name: Kesseltemperatur
- entity: sensor.froeling_abgastemperatur
name: Abgastemperatur
- entity: >-
sensor.froeling_verbleibende_heizstunden_bis_zur_asche_entleeren_warnung
name: Verbleibende Heizstunden bis zur Asche entleeren Warnung
- entity: sensor.froeling_saugzug_ansteuerung
name: Saugzug - Ansteuerung
- entity: sensor.froeling_restsauerstoffgehalt
name: Restsauerstoffgehalt
- entity: sensor.froeling_primarluft
name: Primärluft
- entity: sensor.froeling_sekundarluft
name: Sekundärluft
- entity: sensor.froeling_rucklauffuhler
name: Rücklauffühler
title: Zustand
- type: entities
entities:
- entity: number.froeling_kessel_solltemperatur
name: Kessel-Solltemperatur
title: Einstellungen
- title: Heizkreis01
path: heizkreis01
badges: []
cards:
- type: horizontal-stack
cards:
- type: custom:floorplan-card
full_height: false
config:
image: /local/froeling/froeling_heizkreis01.svg
cache: false
stylesheet: /local/froeling/home.css
defaults:
hover_action: hover-info
tap_action: more-info
rules:
- entities:
- sensor.froeling_aussentemperatur
- sensor.froeling_hk1_vorlauf_isttemperatur
tap_action: false
state_action:
action: call-service
service: floorplan.text_set
service_data: ${entity.state + "°C"}
- entities:
- binary_sensor.froeling_hk1_pumpe_an_aus
tap_action: false
state_action:
action: call-service
service: floorplan.class_set
service_data:
class: '${(entity.state == "on") ? "fill-green" : "fill-grey"}'
- type: entities
entities:
- entity: sensor.froeling_hk1_vorlauf_isttemperatur
name: Vorlauf-Isttempratur
- entity: sensor.froeling_hk1_vorlauf_solltemperatur
name: Vorlauf-Solltemperatur
- entity: sensor.froeling_aussentemperatur
name: Außentemperatur
title: Zustand
- type: entities
entities:
- entity: >-
number.froeling_hk1_gewunschte_vorlauf_temperatur_bei_10degc_aussentemperatur
name: Gewünschte Vorlauf-temperatur bei -10°C Außentemperatur
- entity: >-
number.froeling_hk1_gewunschte_vorlauf_temperatur_bei_10degc_aussentemperatur_2
name: Gewünschte Vorlauf-temperatur bei +10°C Außentemperatur
- entity: >-
number.froeling_hk1_heizkreispumpe_ausschalten_wenn_vorlauf_soll_kleiner_ist_als
name: Heizkreispumpe ausschalten wenn Vorlauf Soll kleiner ist als
- entity: >-
number.froeling_hk1_absenkung_der_vorlauftemperatur_im_absenkbetrieb
name: Absenkung der Vorlauftemperatur im Absenkbetrieb
- entity: >-
number.froeling_hk1_aussentemperatur_unter_der_die_heizkreispumpe_im_heizbetrieb_einschaltet
name: >-
Außentemperatur, unter der die Heizkreispumpe im Heizbetrieb
einschaltet
- entity: >-
number.froeling_hk1_aussentemperatur_unter_der_die_heizkreispumpe_im_absenkbetrieb_einschaltet
name: >-
Außentemperatur, unter der die Heizkreispumpe im Absenkbetrieb
einschaltet
- entity: number.froeling_hk1_frostschutztemperatur
name: Frostschutztemperatur
- entity: >-
number.froeling_hk1_temp_am_puffer_oben_ab_der_der_uberhitzungsschutz_aktiv_wird
name: Temp. am Puffer oben ab der der Überhitzungsschutz aktiv wird
title: Einstellungen
- title: Heizkreis02
path: heizkreis02
badges: []
cards:
- type: horizontal-stack
cards:
- type: custom:floorplan-card
full_height: false
config:
image: /local/froeling/froeling_heizkreis02.svg
cache: false
stylesheet: /local/froeling/home.css
defaults:
hover_action: hover-info
tap_action: more-info
rules:
- entities:
- sensor.froeling_aussentemperatur
- sensor.froeling_hk2_vorlauf_isttemperatur
tap_action: false
state_action:
action: call-service
service: floorplan.text_set
service_data: ${entity.state + "°C"}
- entities:
- binary_sensor.froeling_hk2_pumpe_an_aus
tap_action: false
state_action:
action: call-service
service: floorplan.class_set
service_data:
class: '${(entity.state == "on") ? "fill-green" : "fill-grey"}'
- type: entities
entities:
- entity: sensor.froeling_hk2_vorlauf_isttemperatur
name: Vorlauf-Isttempratur
- entity: sensor.froeling_hk2_vorlauf_solltemperatur
name: Vorlauf-Solltemperatur
- entity: sensor.froeling_aussentemperatur
name: Außentemperatur
title: Zustand
- type: entities
entities:
- entity: >-
number.froeling_hk2_gewunschte_vorlauf_temperatur_bei_10degc_aussentemperatur
name: Gewünschte Vorlauf-temperatur bei -10°C Außentemperatur
- entity: >-
number.froeling_hk2_gewunschte_vorlauf_temperatur_bei_10degc_aussentemperatur_2
name: Gewünschte Vorlauf-temperatur bei +10°C Außentemperatur
- entity: >-
number.froeling_hk2_heizkreispumpe_ausschalten_wenn_vorlauf_soll_kleiner_ist_als
name: Heizkreispumpe ausschalten wenn Vorlauf Soll kleiner ist als
- entity: >-
number.froeling_hk2_absenkung_der_vorlauftemperatur_im_absenkbetrieb
name: Absenkung der Vorlauftemperatur im Absenkbetrieb
- entity: >-
number.froeling_hk2_aussentemperatur_unter_der_die_heizkreispumpe_im_heizbetrieb_einschaltet
name: >-
Außentemperatur, unter der die Heizkreispumpe im Heizbetrieb
einschaltet
- entity: >-
number.froeling_hk2_aussentemperatur_unter_der_die_heizkreispumpe_im_absenkbetrieb_einschaltet
name: >-
Außentemperatur, unter der die Heizkreispumpe im Absenkbetrieb
einschaltet
- entity: number.froeling_hk2_frostschutztemperatur
name: Frostschutztemperatur
- entity: >-
number.froeling_hk2_temp_am_puffer_oben_ab_der_der_uberhitzungsschutz_aktiv_wird
name: Temp. am Puffer oben ab der der Überhitzungsschutz aktiv wird
title: Einstellungen
- title: Boiler 01
path: boiler-01
badges: []
cards:
- type: custom:floorplan-card
full_height: false
config:
image: /local/froeling/froeling_boiler01.svg
cache: false
stylesheet: /local/froeling/home.css
defaults:
hover_action: hover-info
tap_action: more-info
rules:
- entities:
- sensor.froeling_boiler_1_temperatur_oben
tap_action: false
state_action:
action: call-service
service: floorplan.text_set
service_data: ${entity.state + "°C"}
- entities:
- sensor.froeling_boiler_1_pumpe_ansteuerung
tap_action: false
state_action:
action: call-service
service: floorplan.text_set
service_data: ${entity.state + "%"}
- entities:
- binary_sensor.froeling_boiler_1_pumpe_ansteuerung_an_aus
tap_action: false
state_action:
action: call-service
service: floorplan.class_set
service_data:
class: '${(entity.state == "on") ? "fill-green" : "fill-grey"}'
- type: entities
entities:
- entity: sensor.froeling_boiler_1_temperatur_oben
name: Temperatur Oben
- entity: sensor.froeling_boiler_1_pumpe_ansteuerung
name: Pumpe Ansteuerung
title: Zustand
- type: entities
entities:
- entity: number.froeling_boiler_1_gewunschte_boilertemperatur
name: Gewünschte Boilertemperatur
- entity: number.froeling_boiler_1_nachladen_wenn_boilertemperatur_unter
name: Nachladen wenn Boilertemperatur unter
title: Einstellungen
- title: Puffer 01
path: puffer-01
badges: []
cards:
- type: custom:floorplan-card
full_height: false
config:
image: /local/froeling/froeling_puffer01.svg
cache: false
stylesheet: /local/froeling/home.css
defaults:
hover_action: hover-info
tap_action: more-info
rules:
- entities:
- sensor.froeling_kesseltemperatur
- sensor.froeling_puffer_1_temperatur_oben
- sensor.froeling_puffer_1_temperatur_unten
tap_action: false
state_action:
action: call-service
service: floorplan.text_set
service_data: ${entity.state + "°C"}
- entities:
- sensor.froeling_puffer_1_ladezustand
- sensor.froeling_puffer_1_pufferpumpen_ansteuerung
tap_action: false
state_action:
action: call-service
service: floorplan.text_set
service_data: ${entity.state + "%"}
- entities:
- >-
binary_sensor.froeling_puffer_1_pufferpumpen_ansteuerung_an_aus
tap_action: false
state_action:
action: call-service
service: floorplan.class_set
service_data:
class: '${(entity.state == "on") ? "fill-green" : "fill-grey"}'
- entities:
- sensor.froeling_kesselzustand
tap_action: false
state_action:
action: call-service
service: floorplan.class_set
service_data:
class: '${(entity.state == "Heizen") ? "fill-red" : "fill-grey"}'
- type: entities
entities:
- entity: sensor.froeling_puffer_1_temperatur_oben
name: Temperatur Oben
- entity: sensor.froeling_puffer_1_temperatur_mitte
name: Temperatur Mitte
- entity: sensor.froeling_puffer_1_temperatur_unten
name: Temperatur Unten
- entity: sensor.froeling_puffer_1_ladezustand
name: Ladezustand
- entity: sensor.froeling_puffer_1_pufferpumpen_ansteuerung
name: Pufferpumpen Ansteuerung
title: Zustand
- type: entities
entities: []
title: Einstellungen
- title: Austragung
path: austragung
badges: []
cards:
- type: custom:floorplan-card
full_height: false
config:
image: /local/froeling/froeling_austragung.svg
cache: false
stylesheet: /local/froeling/home.css
defaults:
hover_action: hover-info
tap_action: more-info
rules:
- entities:
- sensor.froeling_pelletlager_restbestand
- sensor.froeling_resetierbarer_t_zaehler
tap_action: false
state_action:
action: call-service
service: floorplan.text_set
service_data: ${entity.state + "t"}
- entities:
- sensor.froeling_fuellstand_im_pelletsbehaelter
tap_action: false
state_action:
action: call-service
service: floorplan.text_set
service_data: ${entity.state + "%"}
- type: entities
entities:
- entity: sensor.froeling_fuellstand_im_pelletsbehaelter
- entity: sensor.froeling_resetierbarer_t_zaehler
- entity: sensor.froeling_resetierbarer_kg_zaehler
- entity: sensor.froeling_pelletlager_restbestand
- entity: sensor.froeling_pelletverbrauch_gesamt
title: Zustand
- type: entities
entities: []
title: Einstellungen
- title: Zirk. Pumpe
path: zirk-pumpe
badges: []
cards:
- type: custom:floorplan-card
full_height: false
config:
image: /local/froeling/froeling_zirkulationspumpe.svg
cache: false
stylesheet: /local/froeling/home.css
defaults:
hover_action: hover-info
tap_action: more-info
rules:
- entities:
- >-
sensor.froeling_ruecklauftemperatur_an_der_zirkulations_leitung
tap_action: false
state_action:
action: call-service
service: floorplan.text_set
service_data: ${entity.state + "°C"}
- entities:
- sensor.froeling_drehzahl_der_zirkulations_pumpe
tap_action: false
state_action:
action: call-service
service: floorplan.text_set
service_data: ${entity.state + "%"}
- entities:
- binary_sensor.froeling_zirkulationspumpe_an_aus
tap_action: false
state_action:
action: call-service
service: floorplan.class_set
service_data:
class: '${(entity.state == "on") ? "fill-green" : "fill-grey"}'
- type: entities
entities:
- entity: sensor.froeling_ruecklauftemperatur_an_der_zirkulations_leitung
name: Rücklauftemperatur an der Zirkulations Leitung
- entity: sensor.froeling_stromungsschalter_an_der_brauchwasser_leitung
name: Strömungsschalter an der Brauchwasser Leitung
- entity: sensor.froeling_drehzahl_der_zirkulations_pumpe
name: Drehzahl der Zirkulations Pumpe
title: Zustand
- type: entities
entities:
- entity: >-
number.froeling_bei_welcher_rl_temperatur_an_der_zirkulationsleitung_soll_die_pumpe_ausschalten
name: >-
Bei welcher RL Temperatur an der Zirkulationsleitung soll die
Pumpe ausschalten
title: Einstellungen
- title: Solarthermie
path: solarthermie
badges: []
cards:
- type: custom:floorplan-card
full_height: false
config:
image: /local/froeling/froeling_solarthermie.svg
cache: false
stylesheet: /local/froeling/home.css
defaults:
hover_action: hover-info
tap_action: more-info
rules:
- entities:
- sensor.froeling_laufzeit_kollektorpumpe
tap_action: false
state_action:
action: call-service
service: floorplan.text_set
service_data: ${entity.state + "°C"}
- entities:
- sensor.froeling_laufzeit_kollektorpumpe
tap_action: false
state_action:
action: call-service
service: floorplan.text_set
service_data: ${entity.state + "%"}
- entities:
- binary_sensor.froeling_kollektorpumpe_an_aus
tap_action: false
state_action:
action: call-service
service: floorplan.class_set
service_data:
class: '${(entity.state == "on") ? "fill-green" : "fill-grey"}'
- type: entities
entities:
- entity: sensor.froeling_laufzeit_kollektorpumpe
name: Rücklauftemperatur an der Zirkulations Leitung
- entity: sensor.froeling_laufzeit_kollektorpumpe
name: Strömungsschalter an der Brauchwasser Leitung
- entity: sensor.froeling_laufzeit_kollektorpumpe
name: Drehzahl der Zirkulations Pumpe
title: Einstellungen