-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathhome_asistant_card_configuration_example_battery1.txt
More file actions
542 lines (428 loc) · 13.3 KB
/
home_asistant_card_configuration_example_battery1.txt
File metadata and controls
542 lines (428 loc) · 13.3 KB
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
# This is an example of Home Asistant card to organize the cells monitoring data
# This is for battery 1, multiply and reconfigure for the rest.
# IF your device names are pytes and pytes_cells then it is a copy paste exercice
# IF NOT, you need to adapt the YAML code as per your configuration.
# Create a ENTITIES card and copy paste the below YAML code in code editor. SAVE and that's it.
# Prerequsites for Home Assistant: mod-card, multiple-entity-row
# https://github.com/thomasloven/lovelace-card-mod
# https://github.com/benct/lovelace-multiple-entity-row
# ------------------------------------------------------------------------------
type: entities
entities:
- entity: sensor.pytes_status_1
name: Status
secondary_info: none
- entity: sensor.pytes_soc_1
name: SOC
- entity: sensor.pytes_current_1
name: Current
- entity: sensor.pytes_cells_voltage_max_1
name: Max voltage
- entity: sensor.pytes_cells_voltage_min_1
name: Min voltage
- entity: sensor.pytes_cells_voltage_delta_1
name: Delta
secondary_info: last-updated
- entity: sensor.pytes_cells_volt_st_101
type: custom:multiple-entity-row
name: Cell 01
toggle: false
state_header: ' '
state_color: true
icon: mdi:battery-charging-100
entities:
- entity: sensor.pytes_cells_voltage_101
name: ' '
format: precision3
- entity: sensor.pytes_cells_temperature_101
name: ' '
format: precision1
card_mod:
style: >
:host {
{% if (states('sensor.pytes_cells_voltage_101') | float (0)) >= 3.55 %}
--paper-item-icon-color: red
{% elif (states('sensor.pytes_cells_voltage_101') | float (0)) <= 3.25
%}
--paper-item-icon-color: orange
{% else %}
--paper-item-icon-color: green
{% endif %}
- entity: sensor.pytes_cells_volt_st_102
type: custom:multiple-entity-row
name: Cell 02
toggle: false
state_header: ' '
state_color: true
icon: mdi:battery-charging-100
entities:
- entity: sensor.pytes_cells_voltage_102
name: ' '
format: precision3
- entity: sensor.pytes_cells_temperature_102
name: ' '
format: precision1
card_mod:
style: >
:host {
{% if (states('sensor.pytes_cells_voltage_102') | float (0)) >= 3.55 %}
--paper-item-icon-color: red
{% elif (states('sensor.pytes_cells_voltage_102') | float (0)) <= 3.25
%}
--paper-item-icon-color: orange
{% else %}
--paper-item-icon-color: green
{% endif %}
- entity: sensor.pytes_cells_volt_st_103
type: custom:multiple-entity-row
name: Cell 03
toggle: false
state_header: ' '
state_color: true
icon: mdi:battery-charging-100
entities:
- entity: sensor.pytes_cells_voltage_103
name: ' '
format: precision3
- entity: sensor.pytes_cells_temperature_103
name: ' '
format: precision1
card_mod:
style: >
:host {
{% if (states('sensor.pytes_cells_voltage_103') | float (0)) >= 3.55 %}
--paper-item-icon-color: red
{% elif (states('sensor.pytes_cells_voltage_103') | float (0)) <= 3.25
%}
--paper-item-icon-color: orange
{% else %}
--paper-item-icon-color: green
{% endif %}
- entity: sensor.pytes_cells_volt_st_103
type: custom:multiple-entity-row
name: Cell 04
toggle: false
state_header: ' '
state_color: true
icon: mdi:battery-charging-100
entities:
- entity: sensor.pytes_cells_voltage_104
name: ' '
format: precision3
- entity: sensor.pytes_cells_temperature_104
name: ' '
format: precision1
card_mod:
style: >
:host {
{% if (states('sensor.pytes_cells_voltage_104') | float (0)) >= 3.55 %}
--paper-item-icon-color: red
{% elif (states('sensor.pytes_cells_voltage_104') | float (0)) <= 3.25
%}
--paper-item-icon-color: orange
{% else %}
--paper-item-icon-color: green
{% endif %}
- entity: sensor.pytes_cells_volt_st_105
type: custom:multiple-entity-row
name: Cell 05
toggle: false
state_header: ' '
state_color: true
icon: mdi:battery-charging-100
entities:
- entity: sensor.pytes_cells_voltage_105
name: ' '
format: precision3
- entity: sensor.pytes_cells_temperature_105
name: ' '
format: precision1
card_mod:
style: >
:host {
{% if (states('sensor.pytes_cells_voltage_105') | float (0)) >= 3.55 %}
--paper-item-icon-color: red
{% elif (states('sensor.pytes_cells_voltage_105') | float (0)) <= 3.25
%}
--paper-item-icon-color: orange
{% else %}
--paper-item-icon-color: green
{% endif %}
- entity: sensor.pytes_cells_volt_st_106
type: custom:multiple-entity-row
name: Cell 06
toggle: false
state_header: ' '
state_color: true
icon: mdi:battery-charging-100
entities:
- entity: sensor.pytes_cells_voltage_106
name: ' '
format: precision3
- entity: sensor.pytes_cells_temperature_106
name: ' '
format: precision1
card_mod:
style: >
:host {
{% if (states('sensor.pytes_cells_voltage_106') | float (0)) >= 3.55 %}
--paper-item-icon-color: red
{% elif (states('sensor.pytes_cells_voltage_106') | float (0)) <= 3.25
%}
--paper-item-icon-color: orange
{% else %}
--paper-item-icon-color: green
{% endif %}
- entity: sensor.pytes_cells_volt_st_107
type: custom:multiple-entity-row
name: Cell 07
toggle: false
state_header: ' '
state_color: true
icon: mdi:battery-charging-100
entities:
- entity: sensor.pytes_cells_voltage_107
name: ' '
format: precision3
- entity: sensor.pytes_cells_temperature_107
name: ' '
format: precision1
card_mod:
style: >
:host {
{% if (states('sensor.pytes_cells_voltage_107') | float (0)) >= 3.55 %}
--paper-item-icon-color: red
{% elif (states('sensor.pytes_cells_voltage_107') | float (0)) <= 3.25
%}
--paper-item-icon-color: orange
{% else %}
--paper-item-icon-color: green
{% endif %}
- entity: sensor.pytes_cells_volt_st_108
type: custom:multiple-entity-row
name: Cell 08
toggle: false
state_header: ' '
state_color: true
icon: mdi:battery-charging-100
entities:
- entity: sensor.pytes_cells_voltage_108
name: ' '
format: precision3
- entity: sensor.pytes_cells_temperature_108
name: ' '
format: precision1
card_mod:
style: >
:host {
{% if (states('sensor.pytes_cells_voltage_108') | float (0)) >= 3.55 %}
--paper-item-icon-color: red
{% elif (states('sensor.pytes_cells_voltage_108') | float (0)) <= 3.25
%}
--paper-item-icon-color: orange
{% else %}
--paper-item-icon-color: green
{% endif %}
- entity: sensor.pytes_cells_volt_st_109
type: custom:multiple-entity-row
name: Cell 09
toggle: false
state_header: ' '
state_color: true
icon: mdi:battery-charging-100
entities:
- entity: sensor.pytes_cells_voltage_109
name: ' '
format: precision3
- entity: sensor.pytes_cells_temperature_109
name: ' '
format: precision1
card_mod:
style: >
:host {
{% if (states('sensor.pytes_cells_voltage_109') | float (0)) >= 3.55 %}
--paper-item-icon-color: red
{% elif (states('sensor.pytes_cells_voltage_109') | float (0)) <= 3.25
%}
--paper-item-icon-color: orange
{% else %}
--paper-item-icon-color: green
{% endif %}
- entity: sensor.pytes_cells_volt_st_110
type: custom:multiple-entity-row
name: Cell 10
toggle: false
state_header: ''
state_color: true
icon: mdi:battery-charging-100
entities:
- entity: sensor.pytes_cells_voltage_110
name: ' '
format: precision3
- entity: sensor.pytes_cells_temperature_110
name: ' '
format: precision1
card_mod:
style: >
:host {
{% if (states('sensor.pytes_cells_voltage_110') | float (0)) >= 3.55 %}
--paper-item-icon-color: red
{% elif (states('sensor.pytes_cells_voltage_110') | float (0)) <= 3.25
%}
--paper-item-icon-color: orange
{% else %}
--paper-item-icon-color: green
{% endif %}
- entity: sensor.pytes_cells_volt_st_111
type: custom:multiple-entity-row
name: Cell 11
toggle: false
state_header: ' '
state_color: true
icon: mdi:battery-charging-100
entities:
- entity: sensor.pytes_cells_voltage_111
name: ' '
format: precision3
- entity: sensor.pytes_cells_temperature_111
name: ' '
format: precision1
card_mod:
style: >
:host {
{% if (states('sensor.pytes_cells_voltage_111') | float (0)) >= 3.55 %}
--paper-item-icon-color: red
{% elif (states('sensor.pytes_cells_voltage_111') | float (0)) <= 3.25
%}
--paper-item-icon-color: orange
{% else %}
--paper-item-icon-color: green
{% endif %}
- entity: sensor.pytes_cells_volt_st_112
type: custom:multiple-entity-row
name: Cell 12
toggle: false
state_header: ' '
state_color: true
icon: mdi:battery-charging-100
entities:
- entity: sensor.pytes_cells_voltage_112
name: ' '
format: precision3
- entity: sensor.pytes_cells_temperature_112
name: ' '
format: precision1
card_mod:
style: >
:host {
{% if (states('sensor.pytes_cells_voltage_112') | float (0)) >= 3.55 %}
--paper-item-icon-color: red
{% elif (states('sensor.pytes_cells_voltage_112') | float (0)) <= 3.25
%}
--paper-item-icon-color: orange
{% else %}
--paper-item-icon-color: green
{% endif %}
- entity: sensor.pytes_cells_volt_st_113
type: custom:multiple-entity-row
name: Cell 13
toggle: false
state_header: ' '
state_color: true
icon: mdi:battery-charging-100
entities:
- entity: sensor.pytes_cells_voltage_113
name: ' '
format: precision3
- entity: sensor.pytes_cells_temperature_113
name: ' '
format: precision1
card_mod:
style: >
:host {
{% if (states('sensor.pytes_cells_voltage_113') | float (0)) >= 3.55 %}
--paper-item-icon-color: red
{% elif (states('sensor.pytes_cells_voltage_113') | float (0)) <= 3.25
%}
--paper-item-icon-color: orange
{% else %}
--paper-item-icon-color: green
{% endif %}
- entity: sensor.pytes_cells_volt_st_114
type: custom:multiple-entity-row
name: Cell 14
toggle: false
state_header: ' '
state_color: true
icon: mdi:battery-charging-100
entities:
- entity: sensor.pytes_cells_voltage_114
name: ' '
format: precision3
- entity: sensor.pytes_cells_temperature_114
name: ' '
format: precision1
card_mod:
style: >
:host {
{% if (states('sensor.pytes_cells_voltage_114') | float (0)) >= 3.55 %}
--paper-item-icon-color: red
{% elif (states('sensor.pytes_cells_voltage_114') | float (0)) <= 3.25
%}
--paper-item-icon-color: orange
{% else %}
--paper-item-icon-color: green
{% endif %}
- entity: sensor.pytes_cells_volt_st_115
type: custom:multiple-entity-row
name: Cell 15
toggle: false
state_header: ' '
state_color: true
icon: mdi:battery-charging-100
entities:
- entity: sensor.pytes_cells_voltage_115
name: ' '
format: precision3
- entity: sensor.pytes_cells_temperature_115
name: ' '
format: precision1
card_mod:
style: >
:host {
{% if (states('sensor.pytes_cells_voltage_115') | float (0)) >= 3.55 %}
--paper-item-icon-color: red
{% elif (states('sensor.pytes_cells_voltage_115') | float (0)) <= 3.25
%}
--paper-item-icon-color: orange
{% else %}
--paper-item-icon-color: green
{% endif %}
- entity: sensor.pytes_cells_volt_st_116
type: custom:multiple-entity-row
name: Cell 16
toggle: false
state_header: ' '
state_color: true
icon: mdi:battery-charging-100
entities:
- entity: sensor.pytes_cells_voltage_116
name: ' '
format: precision3
- entity: sensor.pytes_cells_temperature_116
name: ' '
format: precision1
card_mod:
style: >
:host {
{% if (states('sensor.pytes_cells_voltage_116') | float (0)) >= 3.55 %}
--paper-item-icon-color: red
{% elif (states('sensor.pytes_cells_voltage_116') | float (0)) <= 3.25
%}
--paper-item-icon-color: orange
{% else %}
--paper-item-icon-color: green
{% endif %}
title: 'PYTES #1 '
state_color: true
show_header_toggle: false