github homeassistant-extras/device-card 0.19.0
0.19.0 - Device Sorting & Heading Entity Icon 📋🎯

8 hours ago

📋 Device Sorting for Integration Card

You can now sort devices in the Integration card by name, in ascending or descending order. This helps keep devices in a consistent order (e.g. alphabetically by name)

type: custom:integration-card
integration: overkiz
sort_devices:
  type: name
  direction: asc

Options: type is name; direction can be asc or desc (default: asc).

🖼️ Heading Icon

When you configure entity_id on the device card, the entity's icon now appears next to the heading. The icon reflects the entity's current state (e.g., a thermostat shows its mode, a sensor shows its device class icon).

icon

You can also set a custom icon in the config (or via the visual editor's icon picker) to override the entity icon or display an icon when no entity is configured.

type: custom:device-card
device_id: YOUR_DEVICE_ID
entity_id: sensor.living_room_temperature
icon: mdi:thermometer # Optional: override or use without entity_id

Not a fan of the heading icon? Add hide_icon to your features to hide it:

type: custom:device-card
device_id: YOUR_DEVICE_ID
features:
  - hide_icon

What's Changed

Full Changelog: 0.18.0...0.19.0

Don't miss a new device-card release

NewReleases is sending notifications on new releases.