-
-
Notifications
You must be signed in to change notification settings - Fork 31.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Roborock Add vacuum_goto service (#133994)
* Roborock Add vacuum_goto service to control vacuum movement to specified coordinates * roborock Add type specification for x_coord and y_coord in vacuum_goto service * roborock Add get_current_position service to retrieve vacuum's current coordinates * Rename vacuum services for clarity and consistency * Apply suggestions from code review Co-authored-by: G Johansson <goran.johansson@shiftit.se> * Add integration field to vacuum service targets for Roborock --------- Co-authored-by: G Johansson <goran.johansson@shiftit.se>
- Loading branch information
1 parent
9840785
commit b2a160d
Showing
6 changed files
with
217 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,28 @@ | ||
get_maps: | ||
target: | ||
entity: | ||
integration: roborock | ||
domain: vacuum | ||
set_vacuum_goto_position: | ||
target: | ||
entity: | ||
integration: roborock | ||
domain: vacuum | ||
fields: | ||
x_coord: | ||
example: 27500 | ||
required: true | ||
selector: | ||
text: | ||
type: number | ||
y_coord: | ||
example: 32000 | ||
required: true | ||
selector: | ||
text: | ||
type: number | ||
get_vacuum_current_position: | ||
target: | ||
entity: | ||
integration: roborock | ||
domain: vacuum |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters