Vacuum Addon - Room Cleaning
Shoomaan opened this issue · 7 comments
Shoomaan commented
dwainscheeren commented
dimmuboy commented
I have same problem, no special chars are used in room names but no action.
I have Valetudo RE 0.9.5.2
Klumpke commented
I just pushed an update. #52
You now have a choice of 2 platforms (original
and valetudo
).
When you set original
you can enter zone coordinates for your rooms.
For example:
data:
vacuum: vacuum.rockrobo
platform: original
map: camera.rockrobo_map
rooms:
- room: Living Room
zone: [20080,26771,23280,33121,1]
icon: fal:couch
When you set up valetudo
you can enter zone names for your rooms as entered in Valetudo.
For example:
data:
vacuum: vacuum.rockrobo
platform: valetudo
map: camera.rockrobo_map
rooms:
- room: Living Room
zone: living_room
icon: fal:couch
dimmuboy commented
Zone cleaning is not same to room in Valetudo.
In my configuration for zones working
entity_id: vacuum.rockrobo
command: 'zoned_cleanup'
params:
'zone_ids': ["Hallway Rooms"]
and for rooms
entity_id: vacuum.rockrobo
command: 'segmented_cleanup'
params:
'segment_ids': ["Bathroom"]
Klumpke commented
dimmuboy commented
Better option was keep rooms and add zones too for me.
But I don't know how this configuration will works with Roborock without Valetudo.
- type: custom:dwains-flexbox-card
items_classes: 'col-xs-12 col-sm-6 col-sm-6'
cards:
{% if (data | fromjson)['map'] %}
- type: custom:dwains-flexbox-card
padding: true
cards:
- !include
- ../../../../views/partials/heading.yaml
- title: Map
- type: vertical-stack
items_classes: 'col-sm-12'
cards:
- type: picture-entity
entity: {{ (data | fromjson)['map'] }}
show_name: false
show_state: false
tap_action: none
hold_action: none
{% endif %}
{% if (data | fromjson)['rooms'] %}
- type: custom:dwains-flexbox-card
padding: true
cards:
- !include
- ../../../../views/partials/heading.yaml
- title: Rooms
{% for rooms in (data | fromjson)['rooms'] %}
- type: custom:button-card
item_classes: 'col-xs-6'
template: room_climate_info
entity: input_boolean.dummy1
name: {{ rooms.room }}
icon: {{ rooms.icon }}
show_state: false
show_last_changed: false
tap_action:
action: call-service
service: vacuum.send_command
{% if (data | fromjson)['platform'] == "valetudo" %}
service_data:
entity_id: {{ (data | fromjson)['vacuum'] }}
command: segmented_cleanup
params:
'segment_ids': ['{{ rooms.room }}']
{% else %}
service_data:
entity_id: {{ (data | fromjson)['vacuum'] }}
command: app_zoned_clean
params: ['{{ rooms.room }}']
{% endif %}
styles:
grid:
- grid-template-areas: '"i n"'
icon:
- width: 25px
- height: 25px
{% endfor %}
{% endif %}
{% if (data | fromjson)['zones'] %}
- !include
- ../../../../views/partials/heading.yaml
- title: Zones
{% for zones in (data | fromjson)['zones'] %}
- type: custom:button-card
item_classes: 'col-xs-6'
template: room_climate_info
entity: input_boolean.dummy1
name: {{ zones.zone }}
icon: {{ zones.icon }}
show_state: false
show_last_changed: false
tap_action:
action: call-service
service: vacuum.send_command
{% if (data | fromjson)['platform'] == "valetudo" %}
service_data:
entity_id: {{ (data | fromjson)['vacuum'] }}
command: zoned_cleanup
params:
'zone_ids': ['{{ zones.zone }}']
{% else %}
service_data:
entity_id: {{ (data | fromjson)['vacuum'] }}
command: app_zoned_clean
params: ['{{ zones.zone }}']
{% endif %}
styles:
grid:
- grid-template-areas: '"i n"'
icon:
- width: 25px
- height: 25px
{% endfor %}
{% endif %}
{% if (data | fromjson)['controls'] %}
- !include
- ../../../../views/partials/heading.yaml
- title: Control
- type: glance
item_classes: 'col-xs-12'
style: |
ha-card {
border-radius: 5px;
background-color: var(--dwains-theme-primary);
}
show_state: false
entities:
{% for controls in (data | fromjson)['controls'] %}
- entity: input_boolean.dummy1
name: {{ controls.name }}
icon: {{ controls.icon }}
tap_action:
action: call-service
service: {{ controls.service }}
service_data:
entity_id: {{ (data | fromjson)['vacuum'] }}
{% endfor %}
{% endif %}
{% if (data | fromjson)['sensors'] %}
- !include
- ../../../../views/partials/heading.yaml
- title: Information
- type: glance
item_classes: 'col-xs-12'
style: |
ha-card {
border-radius: 5px;
background-color: var(--dwains-theme-primary);
}
entities:
{% for sensors in (data | fromjson)['sensors'] %}
- entity: {{ sensors.sensor }}
name: {{ sensors.name }}
icon: {{ sensors.icon }}
{% endfor %}
{% endif %}
Klumpke commented
Oops, now I understand what you mean..