Hi,
I have an entities
card in which I want to display two values side by side, making use of multiple-entity-row
. This works in principal, but a few releases ago, the values started to be displayed without any rounding. Here’s what I mean:
Here’s the yaml code. The entities being displayed (sensor.shelly_plug_s_nas_jahrlich
and sensor.shelly_plug_s_nas_monatlich
) are utility meters, and their display precision is set to 0.000 as desired.
- type: entities
entities:
- entity: sensor.shelly_plug_s_nas_jahrlich
type: custom:multiple-entity-row
name: Energiebedarf
state_header: Jährlich
icon: mdi:counter
entities:
- entity: sensor.shelly_plug_s_nas_monatlich
name: Monatlich
state_color: true
What do I have to do to display my values rounded to 3 digits?
Thanks
Christian