-
Notifications
You must be signed in to change notification settings - Fork 437
Closed
Labels
issueSomething isn't workingSomething isn't working
Description
What happened?
The HASS APP Shchedy runs properly and sets the thermostat correctly at startup, however, any time based changes in the Schedy app fail to apply.
Version
4.5.11
Installation type
Home Assistant add-on
Relevant log output
I have info logging enabled, and nothing shows up at the time of the scheduled change.Relevant code in the app or config file that caused the issue
thermostat_schedule:
module: hass_apps_loader
class: SchedyApp
debug: true
actor_type: thermostat
schedule_snippets:
######################
### Cooling Season ###
######################
cooling_season_home:
- v: 75
rules:
- { start: "7:00", end: "21:00"}
- v: 69
cooling_season_vacation:
- v: 78
cooling_season_guest:
- v: 75
######################
### Heating Season ###
######################
heating_season_home:
- v: 70
rules:
- {start: "07:00", end: "21:00"}
- v: 67
heating_season_vacation:
- v: 67
heating_season_guest:
- v: 70
rules:
- {start: "07:00", end: "21:00"}
- v: 67
rooms:
whole_house:
actors:
climate.thermostat_main:
supports_hvac_modes: false
schedule:
######################
### Cooling Season ###
######################
- x: "IncludeSchedule(schedule_snippets['cooling_season_home']) if state('climate.thermostat_main') == 'cool' and state('input_select.thermostat_schedule_main') == 'Home' else Next()"
- x: "IncludeSchedule(schedule_snippets['cooling_season_vacation']) if state('climate.thermostat_main') == 'cool' and state('input_select.thermostat_schedule_main') == 'Vacation' else Next()"
######################
### Heating Season ###
######################
#- x: "IncludeSchedule(schedule_snippets['heating_season_guest']) if state('climate.thermostat_main') == 'heat' and is_on('switch.guest_mode') else Next()"
- x: "IncludeSchedule(schedule_snippets['heating_season_home']) if state('climate.thermostat_main') == 'heat' and state('input_select.thermostat_schedule_main') == 'Home' else Next()"
- x: "IncludeSchedule(schedule_snippets['heating_season_vacation']) if state('climate.thermostat_main') == 'heat' and state('input_select.thermostat_schedule_main') == 'Vacation' else Next()"
watched_entities:
- climate.thermostat_main
- input_select.thermostat_schedule_main
- switch.guest_modeAnything else?
No response
Herbs851
Metadata
Metadata
Assignees
Labels
issueSomething isn't workingSomething isn't working