Skip to content

Indicators Configuration

Viet Ngoc edited this page Jun 9, 2025 · 3 revisions

Single Indicators

Single indicators are used to display the state of a single entity, such as a sensor or binary sensor, on the card's header. These indicators are ideal for showcasing key information like vehicle battery level, engine status, or lock state. Each single indicator displays the current state of the entity with an optional icon for better visualization.

For example, a single indicator can be used to show whether a car door is locked or unlocked, or to display the remaining battery percentage of the vehicle.

Group Indicators

Group indicators allow you toThis is useful when you want to track the status of related entities together, such as all door locks or all tire pressures. Group indicators display a summary view of the entities they contain, giving you a quick snapshot of their states.

For instance, you could create a group indicator to monitor the lock status of all car doors, or to show the pressure levels of all tires at once. Group indicators help to keep the interface cleaner and more organized by bundling similar entities together.

Indicators

Yaml Example
indicators:
  single:
    - entity: lock.car_lock
      action_config:
        tap_action:
          action: more-info
    - entity: sensor.car_state_of_charge
      action_config:
        tap_action:
          action: more-info
  group:
    - name: Tires
      items:
        - entity: sensor.car_tire_pressure_front_left
          name: Front left
        - entity: sensor.car_tire_pressure_front_left
          name: Front right
        - entity: sensor.car_tire_pressure_front_left
          name: Rear left
        - entity: sensor.car_tire_pressure_front_left
          name: Rear right
      icon: mdi:car-tire-alert
    - name: Windows
      items:
        - entity: cover.living_room_window
          name: Front Left
          action_config: {}
          icon: mdi:car-door
        - entity: sensor.amg_window_rearright
          action_config: {}
          name: Rear Right
      icon: mdi:car-door
Clone this wiki locally