Hi, i have the Landroid Cloud and the Landroid Card working perfectly. I realized the metrics reported were not being saved in my influx db so I made a custom sensor. I got it working for a root attribute battery_level but I can't seem to get the data from nested attributes such as blades.total_on.
Here is my configuration: ```template:
- sensor:
-
name: my_landroid Battery
unique_id: mower_battery
state: "{{ state_attr('vacuum.my_landroid','battery_level') | int(0) }}"
device_class: battery
unit_of_measurement: "%" -
name: my_landroid State with Blade time
unique_id: mower_state_blades_total_on
state: "{{ state_attr('vacuum.my_landroid', 'blades.total_on') }}"```
-