Maybe this was the issue.
https://www.geekwire.com/2018/github-recovering-widespread-outage-caused-networking-database-issues/
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-Gas
@rob73 I haven’t tried this to see how it looks, but you may just be able to comment out a few of the lines in
MMM-Gas.js
Try commenting out the last 2 lines of this code in the getDom() function.var td5 = document.createElement("td"); td5.innerHTML = dist; TDrow.appendChild(td5); weatherTable.appendChild(TDrow);It should look like this when you’re done.
var td5 = document.createElement("td"); td5.innerHTML = dist; //TDrow.appendChild(td5); //weatherTable.appendChild(TDrow);You should also comment out this part as well.
var bjumpy = document.createElement("th"); bjumpy.setAttribute("style", "text-align:center"); bjumpy.classList.add("xsmall"); bjumpy.innerHTML = "Distance"; //xFCRow.appendChild(bjumpy); //weatherTable.appendChild(xFCRow); -
RE: MMM-Gas
@3d Hmm, the code is supposed to use that variable as an integer. What kind of error were you getting when you had
items: 10,?Edit: Guess it doesn’t matter.
Math.min()still works using a string. -
RE: MMM-Gas
@cowboysdude I just sent you a pull request that should fix their new page.
-
RE: Applied change to config.txt, MM fails to boot.
I had the same issue. I changed
dtoverlay=vc4-kms-v3dtodtoverlay=vc4-fkms-v3dand was able to boot up again. -
RE: MMM-Nest
Please use these steps. If you have any questions after that, I’ll be happy to answer.
-
RE: ipWhitelist HowTo
That doesn’t sound like an ipWhitelist problem. Did you install MMM-Remote-Control per the instructions? If so, what exactly are you getting your error message on and what are the IPs of your magicmirror and device?
-
RE: Unable to display weather description
Well I’m glad it started mostly working. Sorry about the array of weather I was talking about earlier. I though you were using the weatherforecast module to get this info, not currentweather. The way you’re describing the issue, it sounds like the
updateDOM()function is getting called before that value is set. Where in theprocessWeather()function did you putthis.desc = data.weather[0].description;? is it before this section?this.show(this.config.animationSpeed, {lockString:this.identifier}); this.loaded = true; this.updateDom(this.config.animationSpeed); this.sendNotification("CURRENTWEATHER_DATA", {data: data}); -
RE: Unable to display weather description
Yeah, it does look like the module gets back an array of weather data for each day. Have you tried putting some
console.log()statements in your code to try and troubleshoot where the problem is. Likethis.desc = data.weather[0].description; console.log("Description Var - " + this.desc); //See if anything is outputAt least then you’d know if the variable is correct and your div statement isn’t working, or the variable isn’t getting set correctly.
-
RE: Unable to display weather description
Did you want to get the first day’s weather information only? Did you declare the variable
this.descin the start function first? If not, that may be your problem. -
RE: npm install - electron fails to install
What’s in that logfile that was created?
-
RE: npm install - electron fails to install
Are you running it through an SSH connection? If so, try running
DISPLAY=:0 nohup npm start &
If that works, I recommend using pm2 to automatically start your mirror. You can find the guide to get pm2 to work with here. -
RE: API requests stop firing after a couple hours for custom module
@NateDee I tried the same thing. The weird thing is that all the other modules update normally, just the one weather one. Nay luck with your issue?
-
RE: API requests stop firing after a couple hours for custom module
I have a similar issue with forecast-io. Sometimes it updates for days, sometimes it stops updating after an hour or so. I wish I could help fix your problem, but the only thing I did was add a small piece of text that shows when it was last updated so I can restart the mirror.
-
RE: Project overview - 09.02.2018 - revisited
Looks nice! What does the hat you have on your pi do?
-
RE: How to update the master branch?
Seems like you’ve changed some of the files in the MagicMirror directory. If you want to upgrade you’ll have to stash the changes. run
git stashin your MagicMirror directory, then rungit pull. Stashing wont affect your config.js or any modules you’ve installed into your modules directory.Edit
@ninjabreadman’s has a better fix for you than I do. -
RE: Updating to v2.2.0...
okay, try running
rm -f ~/MagicMirror/.git/index.lock
then trygit pullagain. Hopefully you’ll see more than:
Updating b799609..20823bf -
RE: Updating to v2.2.0...
Just trying to cover all the bases here, but are you on the master branch? You can run
git branchto see. It should say something like:pi@Magic-Mirror:~/ $ cd MagicMirror pi@Magic-Mirror:~/MagicMirror $ git branch * masterThe asterisk denotes which branch is your current one.
If for some reason you’re not on the master branch usegit checkout masterto switch back to the master branch.
Then try runninggit pulland see if anything happens. Hopefully you get a list of files that have been changed. If not, and you don’t see an error messages trygit pull -vto see what errors (if any) you are getting.
Hopefully that all works out, then you can just runnpm installand you should be all set.Good luck.
-
RE: MMM-Nest
@pyrosmiley No, sorry. You’re doing it the way I would have recommended. If you want to throw a feature request on the githuib page, I’d be more than happy to try and figure something out.