Read the statement by Michael Teeuw here.
Need Help Changing Background Image Based on Time
- 
 @tonkxy u need to update the url before u call updatedDom() 
- 
 start: function () { this.timer = null this.targetURL = null this.setImageURL() }, getDom: function () { console.log(">", this.targetURL) var dom = document.createElement('div') dom.style.backgroundImage = `url(${this.targetURL})` dom.style.height = '100vh' // I recommend to control this through CSS, but in this example, I just hardcode it. dom.style.width = '100vw' dom.style.backgroundSize = 'cover' return dom }, notificationReceived: function (notification, payload, sender) { if (notification === 'DOM_OBJECTS_CREATED') { this.job() } }, job: function () { clearTimeout(this.timer) this.updateDom() this.setImageURL() this.timer = setTimeout(() => { this.job() }, this.config.updateInterval) }, setImageURL: function () { // do your logic for picking image. Here I pick the random unsplash image instead for example. let rand = Math.floor(Math.random() * 100000) this.targetURL = `https://source.unsplash.com/random?seed=${rand}` }
- 
 @mmrize said in Need Help Changing Background Image Based on Time: job: function () { 
 clearTimeout(this.timer)
 this.updateDom()
 this.setImageURL()still backwards. 
 update url,
 then call updatedDom,
 which calls getDom
 which uses the url
- 
 @MMRIZE @sdetweil 
 Thank you both so much! That did work by the way! It worked once I moved the dom AND I was missing Module: (name), which is just dumb on my part. I appreciate the help and for solving my issue with this!!!Question, do you guys have a favorite beginners place for Magic Mirror? I feel I am missing some fundamentals and would love to take a recommendation. 
- 
 @tonkxy really no design type stuff you can look at my sample module which does all this… 
 https://github.com/sdetweil/SampleModule
- 
 @sdetweil 
 First url was set in start(), so I put that next of update in recursive.
- 
 Time based background is a great idea. Are you planning on releasing this as a module? 
- 
 @mmrize ok. my experience and training on maintaining software teaches me never to do this. you have two places where state is set. 
- 
 @sdetweil you are right. It was just an example. :) 
- 
 @easty i am! Im going to integrate it with weather conditions. It’ll have a gif background that resembles the time of day / condition. Ill be adding in overlays for hrly breakdowns, 5 day etc. 
