MQTT: sensor.picframe_image_date missing? #223
|
I set up MQTT and home assistant. Everything works ok, but I'm not seeing the picframe_image_date sensor. Is this a bug, or how can I enable this sensor? |
Answered by
helgeerbe
Jan 14, 2022
Replies: 3 comments 6 replies
|
I guess you forgot to edit your configuration.yaml file https://github.com/helgeerbe/picframe/wiki/Homeassistant#configurationyaml |
4 replies
2 replies
Answer selected by
clintiepoo
|
This discussion has been automatically locked since there has not been any recent activity after it was closed. Please open a new discussion for related concerns. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Please check in developers tool for the entity id sensor.picframe_image. Does it has an attribute
Exif DateTimeOriginal?This number is an linux timestamp.
In configuration.yaml you create a template sensor which creates a human readable time format.
In developer tools->template you can copy this in the template editor:
{{ state_attr('sensor.picframe_image', 'EXIF DateTimeOriginal') | int | timestamp_custom('%d. %b. %Y %H:%M') }}Does it show the correct time?