adrigzr / badconga

Deprecated plugin for Home Assistant for Cecotec Conga Vacuums.
27 stars 4 forks source link

Added services to use it in automations an others #9

Closed dave-code-ruiz closed 3 years ago

adrigzr commented 3 years ago

Hi,

Thanks for your contribution.

I'm currently working on another approach that has the main point of being cloud-less. We no longer relay on Cecotec cloud and have all data on our local network.

https://github.com/adrigzr/Valetudo

I encourage you to check it out. It also has a better integration with HA.

srpablillo commented 3 years ago

Hi,

Thanks for your contribution.

I'm currently working on another approach that has the main point of being cloud-less. We no longer relay on Cecotec cloud and have all data on our local network.

https://github.com/adrigzr/Valetudo

I encourage you to check it out. It also has a better integration with HA.

@adrigzr , does this mean you are no longer developing Badconga? Will Cecotec robots be added to Valetudo?

Thanks!

adrigzr commented 3 years ago

I think this solution is not viable and i'm no longer supporting it. It was born as a PoC. I think Valetudo is the way to go. I'm working towards making it support Cecotec Robots.

zzarne commented 3 years ago

Hi @dave-code-ruiz!

What is the benefit of having these entity services over using the generic vacuum services?

(badconga.return_to_base vs. vacuum.return_to_base+entity_id: vacuum.conga)

zzarne commented 3 years ago

I'll just close it then. Can be re-opened if needed.

dave-code-ruiz commented 3 years ago

Hi @dave-code-ruiz!

What is the benefit of having these entity services over using the generic vacuum services?

(badconga.return_to_base vs. vacuum.return_to_base+entity_id: vacuum.conga)

Hi, using vacuum generic service you cant create automations using vaccum services

zzarne commented 3 years ago

I still don't understand what you can't do. Here's an automation example, created in lovelace ui, that makes my robot beep every minute:

alias: test
description: ''
trigger:
  - platform: time_pattern
    seconds: '10'
condition: []
action:
  - service: vacuum.locate
    data: {}
    entity_id: vacuum.conga
mode: single

You can use vacuum.start, .stop, etc. as well.

dave-code-ruiz commented 3 years ago

I still don't understand what you can't do. Here's an automation example, created in lovelace ui, that makes my robot beep every minute:

alias: test
description: ''
trigger:
  - platform: time_pattern
    seconds: '10'
condition: []
action:
  - service: vacuum.locate
    data: {}
    entity_id: vacuum.conga
mode: single

You can use vacuum.start, .stop, etc. as well.

You dont undertand because this automation work for you ;) , but dont work for me

zzarne commented 3 years ago

But it should work. Which version of Home Assistant are you using? Do you see any errors? If not, did you enable debug logging?