I have a sensor with nested attributes, like so:
Time: '2021-04-25T08:37:00'
BME280:
Sealevel: 1006.64
Humidity: 57.9
Temperature: 52.6
Pressure: 1003.38
that I’m trying to display in the new Entity card that can use type: attribute
like so:
- entities:
- type: attribute
entity: sensor.bme280_garage
attribute: BME280.Temperature
name: Temperature
Top level attributes work fine.
But it’s not working when I try to get a nested attribute. I’ve tried BME280.Temperature
, BME280_Temperature
, 'BME280:Temperature'
, just plain Temperature
, and the lower case equivalents.
Does anyone know if/how to access nested attributes in this way? Thanks for any help.
(core version: 2021.4.3)