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

Show Auto Clean #112

Open
icolombi opened this issue Aug 9, 2024 · 1 comment
Open

Show Auto Clean #112

icolombi opened this issue Aug 9, 2024 · 1 comment
Labels
enhancement New feature or request

Comments

@icolombi
Copy link

icolombi commented Aug 9, 2024

Hi there,

I'm using the old generation device integration on port 2878.

My device supports auto clean, but I can't find a switch on Home Assistant to enable this feature.

How can I be able to control the auto clean feature with HA?

Thanks.

image

@atxbyea atxbyea added the enhancement New feature or request label Oct 16, 2024
@GSzabados
Copy link

To your configuration.yaml.

switch:
  - platform: template
      auto_clean:
        friendly_name: "AC Auto Clean"
        value_template: "{{ is_state_attr('climate.YOUR_AC_NAME', 'auto_clean', 'on') }}"
        turn_on:
          service: climate.climate_ip_set_property
          data:
            entity_id: climate.YOUR_AC_NAME
            auto_clean: 'on'
        turn_off:
          service: climate.climate_ip_set_property
          data:
            entity_id: climate.YOUR_AC_NAME
            auto_clean: 'off'

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

No branches or pull requests

3 participants