ha-dashboard-cards
Installation
SKILL.md
Works with Python dashboard builders, ha_card_utils.py module, and Lovelace YAML dashboards.
Home Assistant Dashboard Cards
Quick Start
Create a mini-graph-card with multiple entities that keeps its title static:
from ha_card_utils import add_static_title_to_mini_graph
card = {
"type": "custom:mini-graph-card",
"name": "Last 24 Hours",
"hours_to_show": 24,
"entities": [
{"entity": "sensor.office_temperature", "name": "Office"},
{"entity": "sensor.bedroom_temperature", "name": "Bedroom"},
],
}