Power Wheel Card Versions Save

An intuitive way to represent the power and energy that your home is consuming or producing. (A custom card for the Lovelace UI of Home Assistant.)

v0.1.5

3 years ago

0.1.5

Improvements

  • Extra classes to use for styling with card-mod: .position-value, .arrow-value, .icon, .position-icon and .arrow-icon. Example in Readme file.

v0.1.4

3 years ago

0.1.4

Improvements

  • Documentation improvement. As mentioned in #60.
  • Prevent impact for HA breaking change about getting LitElement from hui-view. Better solution for issue #61 than in version 0.1.3.

v0.1.3

3 years ago

0.1.3

Improvements

  • Documentation improvements
    • Rewrite of the icons paragraph in the documentation.
    • Added a paragraph for 'view toggling' in the documentation.
    • Updated HACS installation instruction. Simplified some documentation.
    • Battery feature documentation restructured.
    • Updated installation instructions and HACS info file.
    • Rewrite of the documentation for requirements and configuration.
  • Prevent impact for HA breaking change about getting LitElement from hui-view. Possible solution for issue #61.

v0.1.2

3 years ago

0.1.2

New features

  • Allowing to hide the title. Default value for title is empty now. If you want the previous behavior you could add title: 'Power wheel' to your config. Issue #51.
  • ** BETA.** You can switch the polarity of battery_power_entity with the new card parameter charging_is_positive. No need to make an extra template sensor for this anymore. Issue #46.

Improvements

  • Removed deprecated input parameter energy_price. This parameter was deprecated since version 0.1.0.

Fixes

  • After a startup of HA sensor validation errors stayed visible since the new startup order of HA 0.111.0. Sensor validation is disabled temporarily.

v0.1.1

4 years ago

0.1.1

New features

  • Custom color for active arrows. New card parameter active_arrow_color.
  • Invert grid icon coloring for consuming/producing. New card parameter invert_grid_colors. Default false.

Fixes

  • Provisional fix for icon sizes (as of HA 0.110.0). Issue #48.

v0.1.0

4 years ago

0.1.0

New features

  • BETA. Basic support for a battery in the power view.
    • New card parameter battery_power_entity. Charging should have positive values.
    • New card parameter battery_soc_entity to display the state of charge.
    • New card parameter battery_icon to override the default icon.

What does BETA for battery support mean: expect issues! There are known and unknown issues to be solved. The values and arrows don't show correctly all the time. Expect things that work now will break in future changes of this feature. More info in the README file.

Improvements

  • Total rebuild of the core functions.
  • Moved from web-components-tester to Karma.
  • DEPRECATED. Visual warning if still using card parameter energy_price which is deprecated since version 0.0.13. Please replace energy_price by energy_consumption_rate in your setup.
  • Log version to console also when not in debug mode.

Fixes

  • Number of decimals can be set to zero in energy view and money view. Issue #39.

v0.0.16

4 years ago

0.0.16

Fixes

  • Prepare for future card config changes.

v0.0.15

4 years ago

0.0.15

Improvements

  • Removal of support for Customer Updater.
  • Preparations to support HACS. Repo file tree restructuring and repo name change from custom-cards-lovelace to power-wheel-card.

v0.0.14

4 years ago

0.0.14

Improvements

  • Update for HA Cast. LitElement is taken from hui-view.

Fixes

  • Fixed a link in readme.

v0.0.13

5 years ago

0.0.13

New features

  • Split energy rates for consuming from the grid and producing to the grid.
    • Use new card parameters energy_consumption_rate and optional energy_production_rate.
    • DEPRECATED. Current card parameter energy_price is deprecated and its value will be used as value for energy_consumption_rate for a while. Please replace energy_price by energy_consumption_rate in your setup.

Improvements

  • Hide values near arrows in more cases.
  • Code improvements.