Tip
Missed the v0.6.0 release notes about the inner gauge? See below!
v0.7.0 - More color magic! 🪄
This release introduces the color_interpolation option for both the main and inner gauge. This setting will take over all the color magic you had to do by hand by interpolating a color between your segment steps!
These gauges are created with the following code. The color magic is done using color interpolation!
type: custom:gauge-card-pro
color_interpolation: true
segments:
- from: 0
color: var(--success-color)
- from: 100
color: var(--error-color)type: custom:gauge-card-pro
inner:
color_interpolation: true
segments:
- from: 0
color: var(--success-color)
- from: 100
color: var(--error-color)Full Changelog: v0.6.0...v0.7.0
v0.6.0 - GaugeCeption - The inner gauge is here!
The inner gauge is a completely independently configurable gauge! Checkout the readme for all configuration possibilities.
Changes
- Add inner gauge by @benjamin-dcs in #37
- Add
entity2. An extra entity variable that can be used in templates and actions - Add defaults for
valueandvalue_textby @benjamin-dcs in #36- This includes defaults for
valueandvalue_textof the inner gauge. Useinner: {}in your yaml to make use of all the awesome defaults to get started discovering your inner self ... uuh gauges!
- This includes defaults for
- Improve performance by reducing unnecessary rendering
Dependencies
Full Changelog: v0.5.2...v0.6.0
