-
-
Notifications
You must be signed in to change notification settings - Fork 23
Upgrade from version v2.x.x to v3.0.0
Tom van Swam edited this page Oct 15, 2025
·
6 revisions
The indicator_sensor[x].indicator.type parameter has been renamed to indicator_sensor[x].indicator.image. See the 8th line in the following before and after examples.
v2.0.0 +
type: custom:compass-card
header:
title:
value: title
indicator_sensors:
- sensor: sensor.friends_direction
indicator:
type: arrow_outward
value_sensors:
- sensor: sensor.friends_distancev3.0.0 +
type: custom:compass-card
header:
title:
value: title
indicator_sensors:
- sensor: sensor.friends_direction
indicator:
image: arrow_outward
value_sensors:
- sensor: sensor.friends_distancev2.0.0 +
Previously this was possible:
type: custom:compass-card
indicator_sensors:
- sensor: input_number.wind_direction_1
- sensor: sun.sunThis has to be expanded to
v3.0.0 +
type: custom:compass-card
indicator_sensors:
- sensor: input_number.wind_direction_1
indicator:
image: arrow_inward
- sensor: sun.sun
indicator:
image: circle