• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
  1. Home
  2. mochman
  3. Posts
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Offline
  • Profile
  • Following 0
  • Followers 2
  • Topics 6
  • Posts 146
  • Groups 1

Posts

Recent Best Controversial
  • RE: MM Update - GIT error

    Maybe this was the issue.
    https://www.geekwire.com/2018/github-recovering-widespread-outage-caused-networking-database-issues/

    posted in Troubleshooting
    M
    mochman
    Oct 23, 2018, 10:05 PM
  • 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);
    
    posted in Transport
    M
    mochman
    Oct 4, 2018, 7:45 PM
  • 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.

    posted in Transport
    M
    mochman
    Sep 30, 2018, 4:38 PM
  • RE: MMM-Gas

    @cowboysdude I just sent you a pull request that should fix their new page.

    posted in Transport
    M
    mochman
    Sep 30, 2018, 1:58 PM
  • RE: Applied change to config.txt, MM fails to boot.

    I had the same issue. I changed dtoverlay=vc4-kms-v3d to dtoverlay=vc4-fkms-v3d and was able to boot up again.

    posted in Troubleshooting
    M
    mochman
    Jul 2, 2018, 11:17 PM
  • RE: MMM-Nest

    Please use these steps. If you have any questions after that, I’ll be happy to answer.

    posted in Utilities
    M
    mochman
    May 12, 2018, 12:33 PM
  • 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?

    posted in Tutorials
    M
    mochman
    Apr 23, 2018, 10:54 PM
  • RE: Unable to display weather description

    Glad to hear it.

    posted in Requests
    M
    mochman
    Mar 18, 2018, 9:37 PM
  • 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 the processWeather() function did you put this.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});
    
    posted in Requests
    M
    mochman
    Mar 18, 2018, 2:19 PM
  • 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. Like

    this.desc = data.weather[0].description;
    console.log("Description Var - " + this.desc); //See if anything is output
    

    At 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.

    posted in Requests
    M
    mochman
    Mar 17, 2018, 9:27 PM
  • 1 / 1
Enjoying MagicMirror? Please consider a donation!
MagicMirror created by Michael Teeuw.
Forum managed by Sam, technical setup by Karsten.
This forum is using NodeBB as its core | Contributors
Contact | Privacy Policy