Daanoz / ha-google-photos

Home Assistant Google Photos integration
MIT License
84 stars 5 forks source link

Add atribute dat to wallpanel #15

Closed LukaszP2 closed 1 year ago

LukaszP2 commented 1 year ago

Can you show me how to add info from atribute to wallpanel?

Daanoz commented 1 year ago

You can display it using template variable on any card that supports it. For example:

wallpanel:
  enabled: true
  image_url: media-entity://camera.google_photos_favorites_media
  cards:
    - type: markdown
      content: >-
        {{states.camera.google_photos_favorites_media.attributes.media_metadata.photo.cameraMake}},
        {{states.camera.google_photos_favorites_media.attributes.media_metadata.photo.cameraModel}}
LukaszP2 commented 1 year ago

Great, thx!