I have a sensor.url_image that contains the web address of an image. How do I put the image into Lovelace?
create a generic camera (it’s an integration) and point the still image to your entity state value… ie put
{{ states('sensor.url_image') }}
then add that in the dashboard using a picture entity card.
1 Like
Alternative answer, create a template image entity.
template:
image:
url: your web address
name: your image name
2 Likes
Thank you for replies!