@Reotch2 So… I’m an idiot. The static link for SimpleLogo worked fantastic… AFTER… I mod’d the SetInterval function to have a “&” instead of the “?”. now the camera works perfectly. Put simply… use SimpleLogo… use the Foscam static link above to pull a JPEG… update the MMM-SimpleLogo.js Start Function as follows.
start: function() {
if (this.config.refreshInterval > 0) {
var self = this;
setInterval(function() {
img = document.querySelector(‘.simple-logo__container img’);
img.setAttribute(‘src’, self.config.fileUrl + ‘&’ + Date.now());
}, this.config.refreshInterval);
}
},