Hi all. I’m fairly new to Home Assistant and I’ve been trying to get this card working for a long while now and despite reading the documentation and looking at other examples in this thread, I’ve made no real progress.
I’ve installed both the scheduled and the card extensions and I’m to the point where I can create card configurations. I have a service I want to automate on a schedule:
service eight_sleep.heat_set
parameters
duration
(seconds)target
-100 to 100 (like a temperature)
One thing that’s confusing is there appear to be a lot of terms that are used for this extension that have parallels in Home Assistant but might be unrelated. The other thing is the requirement to use groups. What I’m trying to accomplish is a toggle + a schedule. If the toggle is on, the heating of the bed will be done on a schedule.
I’m just very confused about how this config is supposed to work. It centers around groups and entities. I tried adding a group to the configuration.yaml
group:
bedroom_group:
name: Bedroom Controls
entities:
- input_boolean.bed_heating_left
I tried creating a toggle and a schedule in the helpers section. schedule.bed_heating_left
and input_boolean.bed_heating_left
. When I create a card I get the following:
If I select group or input_boolean and click add I get: “there are no groups defined.”
I’ve also tried using the yaml editor for the card configurations with several examples but I can’t seem to get anything that works. I’ve tried reading through the readme on the card project’s github page but it doesn’t really help. I lack familiarity with how Home Assistant is typically supposed to work but I’m eager to improve.