I'm using an Arduino Esp32 with a camera to stream video into a web page I've created. The Esp32 shuts down after around an hour and so the the page needs refreshing to bring the stream back (the window just shows the symbol when no image is available).
So I'd like to have a button that re-opens the image video stream, I have tried various things without success. One issue is the Esp32 is a HTTP server not HTTPS.
Problem:
I want a button that opens/closes the image, refreshing it if it's already open.
This is my code:
<img style="-webkit-user-select: none;margin: auto;" src="xx.xx.xx.xx:82" id='myimage' width="640" height="480" name="securityStream">
You can try creating a button with a function (via
onClick
event) to "refresh" the<img>
tag.The refresh is simply a re-feeding of the same URL as a new
.src
property.Here is some testable code. Let me know if it solves your problem: