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

command ventilation_supply_only doesn't work #85

Open
Hans-0 opened this issue Dec 21, 2024 · 0 comments
Open

command ventilation_supply_only doesn't work #85

Hans-0 opened this issue Dec 21, 2024 · 0 comments

Comments

@Hans-0
Copy link

Hans-0 commented Dec 21, 2024

The following snippet of my comfoair (Q350) yaml config doesn't work. A similar snippet for the extract_only does work fine.
Is there anyone who has an idea why this (ventilation_supply_only) doesn't work?

SNIPPET: ventilation_supply_only

  - platform: template
    name: "Supply Only"
    id: comfoair_supply_only
    optimistic: true
    options:
      - "off"
      - "activate"
    set_action:
      - lambda: |-
          if (x == "off") {
            id(comfo).send_command("ventilation_supply_only_reset");
          }
          if (x == "activate") {
            id(comfo).send_command("ventilation_supply_only");
          }

SNIPPET: ventilation_extract_only

  - platform: template
    name: "Extract Only"
    id: comfoair_extract_only
    optimistic: true
    options:
      - "off"
      - "activate"
    set_action:
      - lambda: |-
          if (x == "off") {
            id(comfo).send_command("ventilation_extract_only_reset");
          }
          if (x == "activate") {
            id(comfo).send_command("ventilation_extract_only");
          }
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

1 participant