• 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. mattlugar
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
M
Offline
  • Profile
  • Following 0
  • Followers 0
  • Topics 2
  • Posts 18
  • Groups 0

mattlugar

@mattlugar

2
Reputation
1.5k
Profile views
18
Posts
0
Followers
0
Following
Joined May 15, 2016, 11:27 PM
Last Online May 22, 2016, 4:19 AM

mattlugar Unfollow Follow

Best posts made by mattlugar

  • RE: Weather Underground Forecast (wuforecast)

    UPDATED MODULE - “Git” module here

    @desq OK, added an option for the degree symbol (I have a small screen and not a mirror, so I don’t like it on mine). I also am now using the “weathericons” from the standard module. :)

    • Option (degreeSym) to display/not display degree symbol
    • Icon set has been changed to “weathericons”
    • Removed the hard-coded resize on icons (forgot to remove during testing)
    • Fixed default cell padding for readability (you can customize through custom.css)

    Note: module is standard grey colors, custom colorization such as the screenshot can be done through custom.css
    alt text

    posted in Utilities
    M
    mattlugar
    May 20, 2016, 3:43 PM
  • RE: News Ticker

    That would be a cool idea… I was pondering doing something similar for a sports score stream (think what you see at the bottom of the screen on ESPN or something). I hadn’t found any good free sports json API that are still active so I hadn’t put any effort towards iet yet. It was a really quick google search so I might have missed something.

    posted in Requests
    M
    mattlugar
    May 19, 2016, 7:15 PM

Latest posts made by mattlugar

  • RE: Weather Underground Forecast (wuforecast)

    UPDATED MODULE - “Git” module here

    @desq OK, added an option for the degree symbol (I have a small screen and not a mirror, so I don’t like it on mine). I also am now using the “weathericons” from the standard module. :)

    • Option (degreeSym) to display/not display degree symbol
    • Icon set has been changed to “weathericons”
    • Removed the hard-coded resize on icons (forgot to remove during testing)
    • Fixed default cell padding for readability (you can customize through custom.css)

    Note: module is standard grey colors, custom colorization such as the screenshot can be done through custom.css
    alt text

    posted in Utilities
    M
    mattlugar
    May 20, 2016, 3:43 PM
  • RE: Weather Underground Forecast (wuforecast)

    @RedNax Oh cool, didn’t even realize you could embed multiple API calls at the same time!!! :)

    posted in Troubleshooting
    M
    mattlugar
    May 20, 2016, 3:26 PM
  • RE: Weather Underground Forecast (wuforecast)

    I was thinking about doing a dual-mod, but honestly there’s no advantage over having two separate mods. The json streams for the current weather and the forecast are separate on Weather Underground, so there’s no advantage on reducing the number of network/API calls. Secondly, it reduces flexibility as far as screen positioning of the mods goes (you’d have to keep them together in the same part of the screen).

    I’m pretty close to finishing my mod for getting current conditions from WU as well. I’m using JSON right now, but I’m trying to see if there’s a way to tap into the ‘realtime’ stream that they use for their flash gadgets that you can put on websites. Not sure if it is possible yet though.

    posted in Troubleshooting
    M
    mattlugar
    May 20, 2016, 12:55 PM
  • RE: Weather Underground Forecast (wuforecast)

    BTW, some modifications I’m planning on:

    • Remove the hardcoded icon sizes (I forgot I had that in there).
    • Add option to show POP for all %'s (including 0)
    • Add option to select specific icon sets Underground Icon Sets
    • Add option to display predicted rain/snow amounts for the day

    There’s other data available from the API (written forecasts, wind speed predictions, humidity predictions, etc), so if there’s interest in finding ways to display that, let me know.

    posted in Utilities
    M
    mattlugar
    May 20, 2016, 12:29 AM
  • RE: Weatherforecast Wunderground module question

    Posted!!! Let me know what you think.

    link text

    posted in Development
    M
    mattlugar
    May 19, 2016, 11:58 PM
  • Weather Underground Forecast (wuforecast)

    This is my first attempt at a full-fledged module for Magic Mirror, so please let me know your feedback or ideas for additional functionality. Also, if I did the GitHub wrong, let me know!
    [card:MattLugar/wuforecast]
    This is modified from the weatherforecast module. It uses Weather Underground as the data source and also has the additional feature of providing the chance of precipitation if it is above 0%.
    alt text

    The color is not default, but can be modified through your custom.css, for example the above screenshot is set with:

    .wuforecast .max-temp {
      font-size: 27px;
      line-height: 27px;
      color: #f66;
    }
    
    .wuforecast .min-temp {
      font-size: 27px;
      line-height: 27px;
      color: #0ff;
    }
    
    .wuforecast .weather-icon {
      font-size: 27px;
      line-height: 27px;
      color: #f93;
    }
    
    .wuforecast .day {
      font-size: 27px;
      line-height: 27px;
      color: #6f6;
    }
    
    posted in Utilities weather
    M
    mattlugar
    May 19, 2016, 11:56 PM
  • RE: Weatherforecast Wunderground module question

    I just finished getting it all coded up. The colors are simply css modifications (I can post how I did that in the README). About to grab some dinner then I’ll finish documentation and figure out how to set it up on GitHub.

    posted in Development
    M
    mattlugar
    May 19, 2016, 11:28 PM
  • RE: News Ticker

    I think he’s talking the scrolling text like you see on TV (at least it is common here in the states). Can’t find a great solo gif of it, but here’s a gif of 17 different ones at the same time, lol… Hopefully enough to get the idea across. It might be a bit taxing on the pi architecture, not sure.

    alt text

    posted in Requests
    M
    mattlugar
    May 19, 2016, 9:05 PM
  • RE: News Ticker

    That would be a cool idea… I was pondering doing something similar for a sports score stream (think what you see at the bottom of the screen on ESPN or something). I hadn’t found any good free sports json API that are still active so I hadn’t put any effort towards iet yet. It was a really quick google search so I might have missed something.

    posted in Requests
    M
    mattlugar
    May 19, 2016, 7:15 PM
  • RE: Weatherforecast Wunderground module question

    I’ve modified the existing weatherforecast module to utilize weather underground… I’m utilizing the weather underground default icons for now. Not sure if it is something of interest for me to modularize or not?

    alt text

    posted in Development
    M
    mattlugar
    May 19, 2016, 7:11 PM
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