Hello! I´m new to this but I´ve been doing an awesome project(so I thonk). I´m using H-A on an raspberry pi to control my Xiaomi roborock v2.
I´ve managed to set upp everything with duckdns, portforward and so on and also managed with IFTTTs and webohook make a command to “zone clean” a specific area(living room).
In the body of the “make a web request” i have the following code:
{ “action”: “call_service”, “service”: “vacuum.send_command”, “entity_id”: “vacuum.bellman” }
And in the configuration.yaml file I have this code:
automation: trigger: platform: event event_type: ifttt_webhook_received event_data: action: call_service action: service: vacuum.send_command data: {"entity_id": "vacuum.bellman", "command": "app_zoned_clean", "params": [[22800,25100,27700,28600,1]]}
When I say “clean the living room” the ifttt activate the zone clena of my living room. The think I now want to do is to make 4 simular setups for kitchen, bedroom, hallway and bathroom.
What should I add in the body of webhook and the code in configuration so I can call specifik automations?