Skip to content

v1.0.7-beta-3

Pre-release
Pre-release
Compare
Choose a tag to compare
@Ludy87 Ludy87 released this 19 May 07:13
· 213 commits to main since this release
2a9b83f

deprecated configuration

unit: "kwh"

default unit is "kwh"

new optional

unit_heating: "Einheiten"  # default kwh
unit_warmwater: ""  # default kwh

Template

add more sample

- name: ECO Heizung Einheiten 03/2022
  unit_of_measurement: "Einheiten"
  state: "{{ state_attr('sensor.heating_2022_3_XXXXXXXXX', 'value') }}"
  state_class: total
- name: ECO Heizung kwh 03/2022
  unit_of_measurement: "kwh"
  state: "{{ state_attr('sensor.heating_2022_3_XXXXXXXXX', 'valuekwh') }}"
  state_class: total
- name: ECO Wasserverbrauch m³ 03/2022
  unit_of_measurement: ""
  state: "{{ state_attr('sensor.warmwater_2022_3_XXXXXXXXX', 'value') }}"
  state_class: total
- name: ECO Wasserverbrauch kwh 03/2022
  unit_of_measurement: "kwh"
  state: "{{ state_attr('sensor.warmwater_2022_3_XXXXXXXXX', 'valuekwh') }}"
  state_class: total

fix warning

Unsupported unit for device_class energy Fix #7


fix bug

ValueError: could not convert string to float: 'None' #4


What's Changed

Full Changelog: v1.0.6...v1.0.7-beta-3