I have a sensor that shows in bps I try to fix it to read in kB/s and add thousands separator (comma)
as this template
- sensor:
- name: "DELL kB/s_received"
unique_id: dell_network_kbs_received
icon: mdi:download
unit_of_measurement: "kB/s"
state: >
{{ "{0:,.0f}".format(states.sensor.dell_network_0_bps_received.state | float / (1024)) }}
Problem is it change to many result types as shown bellow
for that the gauge card give me this error when ( Result type: list )
this when it ( Result type: number or string )
any suggestion ?
Thanks