Skip to content

✨ New Features & 🐛 Bug Fixes

Choose a tag to compare

@cataseven cataseven released this 06 Jun 09:53
d6691c9

✨New: Toggle input_boolean entities from the Automations section

The Automations section now accepts input_boolean entities in addition to automations. Closes #6.

automations:
  automation_section_title: "Toggles"   # optional — rename the section if you mix entity types
  automation_list:
    - automation.arrive_home
    - input_boolean.babysitter_mode
    - input_boolean.guest_mode

The card detects each entity's domain and calls the matching <domain>.turn_on / <domain>.turn_off service, so the same on/off chip works for both automations and input_booleans. The editor's entity picker now lists both domains.

The automation_list YAML key is preserved to keep existing configurations working — only the contents may be mixed. If you'd like a more accurate label, rename the section via Editor → Automations → Section Title (or automation_section_title in YAML).

🐛 Fix: Editor text fields invisible on Home Assistant 2026.x

Several ha-textfield elements in the visual editor rendered with zero height on HA 2026.x, making the following fields invisible: Title, Keypad Width / Height, Action Button Names, Zone Name / Number, Section Titles (Open Only Zones, All Zones, History, Automations), Max Items, and List Height. These have been switched to the modern ha-selector text input which renders correctly across HA versions. No config migration needed — the underlying YAML keys are unchanged.

Migration

None. All existing configurations work unchanged.