kalkih / mini-graph-card

Minimalistic graph card for Home Assistant Lovelace UI
MIT License
3.05k stars 237 forks source link

Gauge Card Config : value_factor, decimals, unit (not working) #816

Closed warlordattack closed 2 years ago

warlordattack commented 2 years ago

Hello, i try to display donload/upload speed for my internet box. I use docker Home Assistant core-2022.7.3 and Lovelace Mini Graph Card installed via HACS.

type: gauge entity: sensor.freebox_download_speed name: down max: 125000 unit: ' ' value_factor: 0.015 decimals: 0

type: gauge entity: sensor.freebox_upload_speed name: up max: 62500 unit: ' ' value_factor: 0.015 decimals: 0

The speed is displayed in kb/s, but i want display Mbps like speedtest.net And i dont want decimals and unit.

So i use : 55550 (box kb/s)*0.015=833 (speed test Mbps) value_factor: 0.015 but id doesn't work , i always see the kb/s value (55550) instead of Mbps (833) : after restarted HA

And i use decimals: 0 because i don't want decimals on screen, but decimals always display.

And i use unit: ' ' (one space caracter) to hide units, how not display units at all ? unit: '' don't work

Same problem for disk space value from HASS.Agent, it's displayed in mb and i want it in Gb.

Best regards :)

{ "theme": "Backend-selected", "title": "fbx", "path": "freebox", "icon": "mdi:router-wireless", "badges": [], "cards": [ { "type": "gauge", "entity": "sensor.freebox_download_speed", "name": "down", "max": 125000, "unit": " ", "value_factor": 0.001, "decimals": 0 }, { "hours_to_show": 1, "graph": "line", "type": "sensor", "entity": "sensor.freebox_download_speed", "detail": 1, "name": "down" }, { "type": "gauge", "entity": "sensor.freebox_upload_speed", "name": "up", "max": 62500, "unit": " ", "value_factor": 0.001, "decimals": 0 }, { "hours_to_show": 1, "graph": "line", "type": "sensor", "entity": "sensor.freebox_upload_speed", "detail": 1, "name": "up" },

2022-07-17_210046 2022-07-17_210550 2022-07-17_210640

ildar170975 commented 2 years ago

This issue is not about mini-graph-card

warlordattack commented 2 years ago

Where can i report issue about value_factor, decimals, unit (not working) please ? (i am not developper, i don't know where to go)

Those options are card options described in the mini-graph-card documentation, this is why i reported here.

Best regards :)

ildar170975 commented 2 years ago

Your code does not contain a code for mini-graph-card. Many cards have options like "unit", "value_factor" etc. You are using a standard "gauge" card. Hence go to the homeassistant github and post an issue there.

warlordattack commented 2 years ago

.... You are using a standard "gauge" card ...

😒 i feel so bad now

.... thank you, i am complete noob in home assistant, i didn't realize i used standard "gauge" 🤣