Open bartowl opened 9 months ago
expected (working) event would be:
event_type: call_service
data:
domain: xiaomi_miio
service: vacuum_clean_segment
service_data:
entity_id:
- vacuum.roborock_vacuum_m1s
segments:
- 17
I'm not sure about where to put (and if it will work) the repeat
though...
This has been done on purpose as a workaround for a bug in HA. Apparently this workaround doesn't work with all vacuums
Hmm, found the commit https://github.com/PiotrMachowski/lovelace-xiaomi-vacuum-map-card/commit/a3e9f484f30bbef596e6829d80c5646f4f330a09
Question is - is this issue stil present? If yes, would it be possible to create an alternative profile that does use xiaomi_miio.vacuum_clean_segment
? I mean - that's why there are those profiles for (btw great idea to deal with this topic!)
Ok, managed to write a workaround by not using template but static code, should someone else be interested. Basicaly I needed to replace:
- template: vacuum_clean_segment
predefined_selections:
- id: 17
...
with
- name: Rooms
icon: mdi:floor-plan
run_immediately: false
coordinates_rounding: true
coordinates_to_meters_divider: 1000
selection_type: ROOM
id_type: number
max_selections: 999
repeats_type: REPEAT
max_repeats: 3
service_call_schema:
service: xiaomi_miio.vacuum_clean_segment
service_data:
segments: "[[selection]]"
entity_id: "[[entity_id]]"
predefined_selections:
- id: 17
...
This works for me. It is then up to you if what you decide to do with this. With my vacuum vacuum.send_command does not seem to work though.
You can use this workaround instead:
- template: vacuum_clean_segment
service_call_schema:
service: xiaomi_miio.vacuum_clean_segment
service_data:
segments: "[[selection]]"
entity_id: "[[entity_id]]"
predefined_selections:
- id: 17
...
Even better, thanks!
Checklist
The problem
Despite Documentation when I load up the card and configure rooms, this is what "copy service call" reports (which of course does not work):
It should use
xiaomi_miio.vacuum_clean_segment
and notvacuum.send_command
What version of a card has described problem?
v2.2.2
What was the last working version card?
No response
What vacuum model do you have problems with?
roborock.vacuum.m1s
Which integration do you use to control your vacuum (link)?
https://www.home-assistant.io/integrations/xiaomi_miio/
What browser (browsers/apps) does have this problem?
Edge/Chrome
What version of Home Assistant do you use?
core-2024.2.3
What type of installation are you running?
Home Assistant Container
Card's configuration
Javascript errors shown in the browser's console (if applicable)
No response
Additional information
No response