Automower Lovelace

I’m using the Plugin : (Xiaomi) Vacuum Card. from HACS to see the status of the automower

entity: vacuum.(your automower name)
image: >-
    https://s2.qwant.com/thumbr/700x0/c/6/1a04d98ebdf37c8e35ec4f12276d604e3e936a88ee3d9aea52759ca5c75b01/Husqvarna-Automower-315-Robotic-Lawn-Mower-01.jpg?u=http%3A%2F%2Fcdn.thegadgetflow.com%2Fwp-content%2Fuploads%2F2017%2F04%2FHusqvarna-Automower-315-Robotic-Lawn-Mower-01.jpg&q=0&b=1&p=0&a=1
type: 'custom:xiaomi-vacuum-card'
name: Automower
buttons:
    locate: false

The result is shone
image

A huge shoutout to nikrolls for the ha-automower

And to benct for the lovelace-xiaomi-vacuum-card

3 Likes

This makes me wish I had a lawn instead of a hillside.

1 Like

I do know that they have the 435 AWD a 4*4 automower that can mow 35° incline but it is crazy expansive

1 Like

Just used your setup and… it´s looking good! Will try it over the next few days. THanks for pointing it out!

1 Like

Glad I stumbled on this post, the card looks much better than the regular entity card. I saved the image to the local directory so it doesn’t rely on the web to pull it in.

I did this in the example so you can just copy and paste the code and it will work but thank to point this out

Is there a way to change the names of the sensors ? I don’t need a Main Brush on my smart mower

Greets

entity: vacuum.automower
image: >-
  https://s2.qwant.com/thumbr/700x0/c/6/1a04d98ebdf37c8e35ec4f12276d604e3e936a88ee3d9aea52759ca5c75b01/Husqvarna-Automower-315-Robotic-Lawn-Mower-01.jpg?u=http%3A%2F%2Fcdn.thegadgetflow.com%2Fwp-content%2Fuploads%2F2017%2F04%2FHusqvarna-Automower-315-Robotic-Lawn-Mower-01.jpg&q=0&b=1&p=0&a=1
type: 'custom:xiaomi-vacuum-card'
name: Automower
buttons:
  locate: false

I have a 430x but mine seems to only display the battery and current mode!
Do you know if there is way to only display used service (battery and current state)
Screenshot 2021-05-23 at 18.34.49

Add state and attributes and you’ll end up with what you need.

entity: vacuum.automower
image: >-
  https://s2.qwant.com/thumbr/700x0/c/6/1a04d98ebdf37c8e35ec4f12276d604e3e936a88ee3d9aea52759ca5c75b01/Husqvarna-Automower-315-Robotic-Lawn-Mower-01.jpg?u=http%3A%2F%2Fcdn.thegadgetflow.com%2Fwp-content%2Fuploads%2F2017%2F04%2FHusqvarna-Automower-315-Robotic-Lawn-Mower-01.jpg&q=0&b=1&p=0&a=1
type: 'custom:xiaomi-vacuum-card'
style: 'ha-card { height: 310px; }'
name: Automower
state:
  mode: false
attributes:
  main_brush: false
  side_brush: false
  filter: false
  sensor: false

I want to get rid of the return to base button, does anyone know what its called? Thanks

Search for home

Hello,
I juat want to send an order to go home for the automover.
Can your tell me how to do that ?

I would like to send this order when it is rainy…

Best regards
Thierry

You can use an automation this would work fine.

alias: Send Automower home when it's raining outside
description: ''
trigger:
  - platform: state
    entity_id: weather.home
    to: rainy
condition: []
action:
  - service: vacuum.return_to_base
    target:
      entity_id: vacuum.automower
mode: single

Tell me if this work for you.
Best regards

1 Like