Hi,
I have a bunch of tabs/views like Home, Automation, Lights
My automation does not show up anywhere since they seem to be behind-the-schenes but is there any way to have them presented under my automation tab so I can choose to turn them off etc?
This is how I did it:
automationgroup:
name: Automation
entities:
- automation.buiten_verlichting_aan
- automation.buiten_verlichting_uit
- automation.verlichting_woonkamer_aan
- automation.verlichting_woonkamer_uit
- automation.verlichting_buiten_ochtend_aan
- automation.verlichting_buiten_ochtend_uit
- automation.upload_gas_usage_to_mindergasnl
automation_view:
view: yes
name: Automation
entities:
- group.automationgroup
2 Likes
Here’s how I did it:
automation:
name: Automation
view: yes
entities:
- group.all_scenes
- group.inputs
- group.all_automations
- group.all_scripts
Just have to remember to set the attribute hidden: false
on the “all_” groups to correct the default.
This way, you don’t have to update any of these groups when you add a script or scene. (Inputs is a custom group I created like the example above so I only show a select group of inputs.)