Icons are not appearing in HomeAssistant, even though on Xiaomi app they are present.
What setting I need to do to show the icons(water drop and rooms)?
This card is not identical to Xiaomi Home.
Yes, I see that, but can mop be added to your custom card?
As far as I know changing fan mode to mopping and starting room cleaning should be enough
Any updates on wyze robot vacuum support being added?
I have a lot of other projects to work on, but I plan to add it as soon as possible
Sweet! Was just checking, thanks.
Any idea about this problem? (popup menu rendered way too high - scorlling up page automatically)
Hi
Have anyone succeded in modifying by splitting the map and controls for a better horizontal view? (The card is slightly bigger than my mounted tablet and forces scrolling).
Or are there perhaps plans for an optional card in the far future?
i finely got the card to work, but i just wonder if any one can point to the right way.
I want to bulid a garage for Doris so i will need, that when it start is going straght out. how can i do that?
How do you want it to work?
- Keep it open while vacuum is operating
- Close it after vacuum leaves the garage
I have a garage for Alfred as well
I know its your fault I need oneā:joy:
I ide is to the the statue from it, so open when going out, close the the door. Then open when done, and need charging. And close when is in the dock.
Which model do you have?
S7
I have more stuff I need to change, on tha map, but thatās a other days projectš„°
Ok, so you have to adjust some things in cardās config to make it work with your garage:
- Create a card with default config
- Click āGenerate static configā button in editor
- Remove
map_modes
andtiles
sections of generated config - Adjust appropriate icons with new service calls, for example:
-
vacuum.start
āscript.vacuum_start
-
vacuum.return
āscript.vacuum_return_to_base
- ā¦
-
- Adjust service call schemas in
map_modes
sections:map_modes: - template: vacuum_clean_segment service_call_schema: service: script.vacuum_send_command service_data: command: app_segment_clean params: "[[selection]]" entity_id: "[[entity_id]]" - template: vacuum_clean_zone service_call_schema: service: script.vacuum_send_command service_data: command: app_zoned_clean params: "[[selection]]" entity_id: "[[entity_id]]" - template: vacuum_clean_zone_predefined service_call_schema: service: script.vacuum_send_command service_data: command: app_zoned_clean params: "[[selection]]" entity_id: "[[entity_id]]" - template: vacuum_goto service_call_schema: service: script.vacuum_send_command service_data: command: app_goto_target params: "[[selection]]" entity_id: "[[entity_id]]" - template: vacuum_goto_predefined service_call_schema: service: script.vacuum_send_command service_data: command: app_goto_target params: "[[selection]]" entity_id: "[[entity_id]]"
Here you have some scripts that I used. You can find script.vacuum_send_command
below:
vacuum_send_command:
mode: parallel
alias: vacuum_send_command
fields:
entity_id:
description: entity_id
command:
description: command
params:
description: params
sequence:
- service: script.vacuum_leave_garage
- service: vacuum.stop
data:
entity_id: "{{ entity_id }}"
- service: vacuum.send_command
data:
entity_id: "{{ entity_id }}"
command: "{{ command }}"
params: "{{ params }}"
thanks, i am trying to solve this,
- Did a new config card,
2.done - Remove the map_modes and tiles.
4 this one i dont understand, i have been looking over the code for āappropriate iconsā but havent find it.
Thereās no āappropriate iconsā section in code, you just have to adjust service call for every icon that it makes sense to do it: for example you should replace service call for vacuum.start
icon, because you want vacuum to exit the garage before starting go clean.
Please paste your code in a proper way
i think i have done it right now, but if i think right, when starting the vaccum, its send a script.vacuum_start.
I will need to add [25212, 22743] some wher, this is the place it sholde go out to after i have startred the vaccum.
Or maybe i dont need to, its just going out form the garage by it self?