Sensor card doesn't recognize humidity and air pressure

Hey guys,
I’m trying to get my lovelace ui showing humidity and air pressure cards from aqara multisensor. However, I’ve got nothing but “Specify an entity from within the sensor domain.” error. Here’s my config for that particular card:

  - enitity: sensor.pressure_living_room
    type: sensor
  - enitity: sensor.humidity_living_room
    type: sensor

Could you tell me please what I’m doing wrong and how to display that kind of sensors?

Go to the dev-state page ( It looks like “< >” in the very bottom of the left-hand-side menu bar, or go to your URL with /dev-state at the end)

From there you can see a list of all of your entities, and try to find the correct name of the sensor your looking for.

Hey, yes, it’s precisely the place where I copied it from

Ok, so if you know the correct entity ID, now for lovelace:

If you’re using the YAML lovelace mode, the view and card should look something like this:

views:
  - title: Sensors
    cards:
      - type: entities
        title: Aqara Multisensor
        entities:
          - sensor.pressure_living_room
          - sensor.humidity_living_room

If you’re using managed lovelace mode, the editor should show it as something like this:

entities:
  - sensor.pressure_living_room
  - sensor.humidity_living_room
title: Aqara Multisensor
type: entities

@Silicon_Avatar thanks, after your config I discovered that i’ve made a typo :rage::rage:

1 Like