Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Window A/C always resets to Auto/Eco climate mode when turned on with automation. #285

Open
ddilapojr opened this issue Sep 13, 2024 · 1 comment

Comments

@ddilapojr
Copy link

I have a few automations set up for my window A/C, and Ive noticed that almost every time an automation triggers a parameter change the unit will switch from whatever climate setting it was on to eco mode, regardless of if the automation is set to change the climate mode or not. If I add in an action to set it to a specific climate mode (other than eco) it will briefly go to that mode, and then switch itself to eco mode.

I am running v0.6.11 and have tried a few older versions with no difference in behavior.

@AlternetConcept
Copy link

AlternetConcept commented Dec 2, 2024

Hey I'm having a similar issue but only with the 'Set HVAC Mode' option. When I've set it to 'Cool', the automation will trigger but the mode is always set to Eco. I was able to control fan speed and set that to 'High' and that sticks. Below is the YAML for my automation. Has anyone else been able to get the HVAC mode to work correctly?

alias: Office AC On
description: ""
triggers:
  - trigger: numeric_state
    entity_id:
      - sensor.office_temperature_sensor_temperature
    above: 75
conditions:
  - condition: state
    entity_id: binary_sensor.office_presence_sensor_occupancy
    state: "on"
actions:
  - action: climate.turn_on
    metadata: {}
    data: {}
    target:
      entity_id:
        - climate.office_ac_climate
  - action: climate.set_fan_mode
    metadata: {}
    data:
      fan_mode: High
    target:
      entity_id:
        - climate.office_ac_climate
  - action: climate.set_hvac_mode
    metadata: {}
    data:
      hvac_mode: cool
    target:
      entity_id: climate.office_ac_climate
mode: single

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants