-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Description
The request
Do not hardcode the UPDATE_INTERVAL value for the "Picture Glance Card", in this way the users will be able to set a custom update interval that fits their needs.
Currently "Picture Glance Card" has two modes to display the camera feed: using a static image or a live feed.
With a live feed you get a video stream of your camera, but the downside is that it's very resource intensive (it's a real video).
The other option is a static image. However the problem here is that the update interval is hardcoded to be 10 seconds, and for a camera feed a delay of 10 seconds might be too slow.
The alternatives
Apart from switching to the live stream mode (too bandwidth and CPU intensive for my use case) I'm not aware of any other alternatives.
Also apparently there aren't any custom component that can be used as a workaround
Additional information
This is a rewrite of the previous issue #6040