I have just finished setting up the Roborock integration using this documentation: Roborock - Home Assistant
I have gotten all the ID´s for the rooms, but i now struggle to understand how i can make this useful. I would like to be able to use google assistant or make buttons that tell the vacuum to clean specific rooms. But how would i go about doing this ?
same here. I have no idea where to get the parameters which I need to put the device into the correct mop mode for example. Are they documented somewhere? Im new to HA…
I know this post is old but if you haven’t figured it out here is how you do it. Once you have the room ID via the docs make a helper button for each room you want to clean. After you make it go back and edit it so it is exposed to your Assistant. Then go make an automation that runs when that helper button is activated. I will post mine here.
I know the post is really old but I created buttons for my dashboard in case people wanted to know, you can use YAML to create manual buttons. I also made it so that the button turns green after clicking it. To make it, you need a script, a helper and a button for each room/zone.
This is for the button (one of my rooms (living room))
After that create a helper (input_boolean) for each one and add each helper to config.yaml (here is the code that you can put in config)
input_boolean:
cleaning_feedback:
name: Cleaning Feedback
initial: off
Note: If you don’t know how to create an input_boolean, the name has been replace to a toggle. You can just select that and that will create an input_boolean.