I have this automation for one of my climate devices:
- alias: 'kitchen_climate_weekend'
trigger:
platform: time
seconds: '/1'
condition:
- condition: and
conditions:
- condition: state
entity_id: sensor.tracker_family_presence
state: 'on'
- condition: state
entity_id: climate.neq1489832
state: 'auto'
- condition: state
entity_id: sensor.climate_awaymode
state: 'off'
- condition: template
value_template: "{{ states.climate.neq1489832.attributes.temperature != states.input_slider.climate_livingroom_comfort_temperature.state }}"
- condition: state
entity_id: binary_sensor.neq0850976_state
state: 'off'
- condition: time
after: '08:30:00'
before: '12:30:00'
weekday:
- sat
- sun
action:
- service: climate.set_temperature
data:
entity_id: climate.neq1489832
temperature: !secret kitchen_climate_comfort_temperature
As you can see I’m able to set the temperature via a input slider while HASS is running.
I know that it’s not possible to use templating in time conditions or time triggers. Is there any possibility to set time/days for my automation via input controls (slider, selects,…) - Even very hackish solutions are welcome