Skip to content

Upgrade from version v2.x.x to v3.0.0

Tom van Swam edited this page Oct 15, 2025 · 6 revisions

Manual update procedure

Indicator Type becomes Indicator Image

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_distance

v3.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_distance

An indicator config must be provided

v2.0.0 +

Previously this was possible:

type: custom:compass-card
indicator_sensors:
  - sensor: input_number.wind_direction_1
  - sensor: sun.sun

This 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

Clone this wiki locally