Hello (and Happy Holidays to all!) I am trying to have the image from a streaming webcam added to my weewx page. I have it functioning over the wireless network in my home, but I cannot see it from the outside world. The following are the settings I am using:
In skin.conf I have:
In index.html.tmpl is:
#if $Extras.has_key('radar_img')
<div id="radar_img">
<a href="$Extras.radar_url">
<img src="$Extras.radar_img" alt="Radar" /></a>
<p>Click image for expanded radar loop</p>
<a href="$Extras.lightning.lightning_url">
<img src="$Extras.lightning.lightning_img" alt="Lightning" /></a>
<p>Click image for more Florida lightning info</p>
<a href="$Extras.webcam.hyperlink">
<img src="
http://xxx.xxx.x.xx:8081" alt="Webcam" /></a>
</div>
#end if
In my router, I added a port forwarding entry of xxx.xxx.x.xx:8081
Thanks for any guidance...