17 lines
631 B
YAML
17 lines
631 B
YAML
- sensor:
|
|
- name: "Energy cost 15min"
|
|
unique_id: energy_cost_15min
|
|
unit_of_measurement: "SEK"
|
|
device_class: monetary
|
|
state_class: total
|
|
availability: "{{ not is_state('sensor.energy_consumption_kwh_15min','unavailable') }}"
|
|
state: "{{ states('sensor.energy_consumption_kwh_15min')|float(0) }}"
|
|
|
|
- name: "Energy cost 60min"
|
|
unique_id: energy_cost_60min
|
|
unit_of_measurement: "SEK"
|
|
device_class: monetary
|
|
state_class: total
|
|
availability: "{{ not is_state('sensor.energy_consumption_kwh_60min','unavailable') }}"
|
|
state: "{{ states('sensor.energy_consumption_kwh_60min')|float(0) }}"
|