I have a problem. After updating, I will add a scheduler tab and it will not appear. I refresh the page and it is present. I switch the view and come back and the screen is blank again. The default theme and custom is the same. HA 0.117.1 browser chrome
Well thatâs weird! The card should work snappyâŚ
I also donât have the issue youâre having.
If you could share a specific pattern you do to get this issue (or maybe even make a screen video), i would like to check it out.
Iâm having the same issue. I have two separate scheduler cards, one on separate lovelace âtabsâ. If I refresh the page while on tab eg âClimateâ my climate scheduler card shows up. But if I select the âAutomationsâ tab, my other scheduler card is not there. I can refresh, and it will show up. But then, clicking back to âClimateâ and the scheduler card there is gone.
I had just updated your card and restarted HA (did not check this functionality however) then updated HA to .117.1 and noticed this behaviour.
I tried restarting and it didnât help. I also have 2 cards, 1 PC monitor and a second tablet on the wall. I am convinced that this was done by updating to v 0.117.1
Same issue. After updating, unable to create new scheduler, just the button âeditâ appears at the bottom of a newly created âscheduler cardâ.
However the new UI (with time presetting, selection of groups, switches, lights, climates, âŚ) is available.
I donât experience any of these problems.
Obviously, else I wouldnât have made a release.
People who have issues with the card are invited to create an issue in GitHub (as usual).
Hope they can provide enough details such that I can reproduce the problem, else I can only guess.
If version 1.8.4 works better for you, thatâs ok with me
Iâm also not a developer, so I can provide screenshots or the same information. My problem is identical. Just a laymanâs view, there must be a difference between a new and an old version. The old version does not show this problem.
I have 7 climates. Each of them can be either in mode âconfortâ which means 20°C all the time or they can be controlled with the scheduler with âconfortâ or âecoâ temperature during specific timeslot.
I need to define 7 daily schedulers.
I also need
to save the temperature (set for the climate) in case of HA restart (to reset the climate to the right temperature)
not to set the temperature defined in the scheduler if the climate is in âconfortâ mode
Therefore, I want to use the script capability in the scheduler.
In the example you provide, temperature is sent as a field (and I assume that temperature means the temperature set as a target for the climate and not the current_temperature).
but how to send additional fields (such as climate name) to the script if I want to avoid to write seven different scripts.
Can you give us more information on the âscript optionâ. I mean the option to schedule scripts with fields?
I think thatâs the best option to achieve what I want.
If you have other ideas, let me know
Thanks
7 climates is quite much!
I would recommend you to make a group, to combine several.
If you want to keep individual control, you could make the entity as variable in your script as well:
my_script:
fields:
temperature: {} # allow temperature as variable field
entity: {}
sequence: # sequence for multiple steps, aborts if a step fails
- service: climate.set_temperature # update the temperature
data_template:
entity_id: "{{entity }}"
temperature: "{{ temperature }}"
Not sure why you would want this, because the effect is identical to controlling it directly.
But ofcourse you could extend the script with conditions etc.
You could add 6 more actions to support the other entities.
Unfortunately it is not possible to have temperature and entity BOTH as variables, you have to keep one of them fixed in the action.
@neliss Sorry for taking so long to respond to your update. Iâve implemented it and it works. Anyhow just wanted to provide feedback in terms of functionality and I think its somewhat similar to what @Merangle is getting at in terms of being able to select an action for a group of entities.
The picture shows what is now in place and you can see Iâve applied the group idea by defining one called âall blindsâ for which the âOpenâ and âCloseâ actions are defined. What I was thinking of was the ability to use the CTRL key and select multiple items (in this case blinds) and then have the action apply to those that have been selected. The intent is to enable the creation of one scheduled action that then applies to one or more entities (in this case blinds), that would then reduce the total number of schedules to manage. Still loving the schedulerâŚ
Yeah i get your point.
Getting dizzy with all those shutter icons
I would like to introduce multiple-entity-select option (because the scheduler-component is prepared for this since day 1).
Just didnât find the time for it yet.
There are quite some changes I have to make in the card to create this flexibility.
There is no CTRL key on the phone, i will have to find another way to do this.