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

    Posts

    Recent Best Controversial
    • RE: MMM-CalendarExt

      @yoey2112

      May I ask how you were able to show blank events?

      mine looks like this, all jumbled up and no blanks…

      0_1539726471688_Screenshot (380).png

      posted in Productivity
      justjim1220J
      justjim1220
    • how to pull new element added to an array?

      OK, so I was able to modify the default newsfeed module to show an icon/image and got the description to marquee across the page.

      But, I want it to be able to use more than one feed.
      I can’t seem to get it to pull from the feeds array, I don’t get any errors from this, It just won’t show the image…

      Here is my current configuration that gives me the undefined image…

                       feeds: [
                              {
                                      icon: "NewYorkTimes.png",
                                      title: "New York Times",
      		       		url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
                              },
      			{
      				icon: "USAToday.png",
      				title: "USA Today",
      				url: "http://rssfeeds.usatoday.com/UsatodaycomNation-TopStories"
      			},
      			{
      				icon: "BBCWorldNews.png",
      				title: "BBC World News",
      				url: "https://www.bbc.com/news/world"
      			}
      		],
      
                  if (this.config.showMarquee && this.config.showIcon) {
                      var marquee = document.createElement("div");
                      marquee.className = "bright xlarge bold";
      
                      var icon = document.createElement("icon");
                      icon.innerHTML = "img class = image src=./modules/default/newsfeed/icons/" + this.newsItems[this.activeItem].icon;
                      wrapper.appendChild(icon);
                      
                      var txtDesc = document.createElement("marquee");
                      txtDesc.className = "bright xlarge bold";
                      txtDesc.innerHTML = moment(new Date(this.newsItems[this.activeItem].pubdate)).fromNow() + ":" + "  " + this.newsItems[this.activeItem].title; + "  ||  " + this.newsItems[this.activeItem].description + "    ||    ";
                      
                      wrapper.appendChild(txtDesc);
                  }
      

      Any ideas would be greatly appreciated!

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: LED display shines through

      @hannes23

      Make sure the mirror is right up against the monitor screen, otherwise, you may be getting a reflection from the monitor on the back of the mirror causing shadows.

      posted in Hardware
      justjim1220J
      justjim1220
    • RE: Run MM on Ubuntu 16 VM

      @reitrac

      Did you change the name of the config file from ‘config.js.sample’ to ‘config.js’ ?

      posted in General Discussion
      justjim1220J
      justjim1220
    • RE: MMM-earth

      @bhepler

      I’ve tried the reload/restart of MagicMirror. It doesn’t always work. I have been finding since this last update, that most of the time it requires a restart of the system.

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: MMM-TracCar

      @maxs @iwaldrum you can add zoom: 75; to your custum css file
      Or you can use your keyboard and press Ctrl > - to zoom out or ctrl >Shift > + to zoom in

      posted in Transport
      justjim1220J
      justjim1220
    • RE: Webcam instead of mirror?

      @flipfloplife

      I have a lot of color to my ‘mirror’, but I am on a limited income being disabled, so can’t really afford the one-way glass to turn it into a mirror yet. I just use it as an information and entertainment board.

      posted in General Discussion
      justjim1220J
      justjim1220
    • RE: MMM-earth

      @striiker

      Try rebooting your system

      I have found that sometimes that is what it takes to get some modules to work after first install, and load and not working.

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: Modules with Images not Displaying

      @striiker

      Have your tried rebooting your system?

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: YTD Stocks tracker

      @mykle1

      I can try!!!

      posted in Requests
      justjim1220J
      justjim1220
    • RE: YTD Stocks tracker

      0_1539542141098_Screenshot (379).png

      bottom center is the MMM-AVStocks it has 3 options… Series, Ticker, & Table.

      Can’t run 2 instances of the module, so I have the stocks module running as a ticker along the bottom.

      posted in Requests
      justjim1220J
      justjim1220
    • RE: YTD Stocks tracker

      @humdinger44

      It exists…

      MMM-AVStocks

      posted in Requests
      justjim1220J
      justjim1220
    • RE: MMM-NOAA - Another Weather Module

      @vauxdvihl

      I made it bigger by changing the font and image values in the css file I use. WHich, I use the CSS4 option.

      posted in System
      justjim1220J
      justjim1220
    • RE: MMM-NOAA - Another Weather Module

      @cowboysdude

      0_1539486790858_kansas-city-chiefs.png

      posted in System
      justjim1220J
      justjim1220
    • RE: MMM-NOAA - Another Weather Module

      @cowboysdude

      Dude! Cowboys season… :face_with_stuck-out_tongue_closed_eyes:

      posted in System
      justjim1220J
      justjim1220
    • RE: Change newsfeed title to image/logo?

      @blueadam

      Cool, I have mine to show the title and description so I can at least see what the headline is and a brief description.

      Just didn’t include that in the sample.

      If you cahnge everything to false except what you are wanting to show, it will fix the double posting of the date. As I had it set to only show the description since everything is under that code snippet.

      Still working on having more than one newsfeed with the logo images.
      Thanks!

      posted in Development
      justjim1220J
      justjim1220
    • RE: MMM-SystemStats (cpu temp/load, fre ram ...)

      @sean

      Got any idea on how to get this and any ofnthe other PC stats modules to show the CPU and GPU temps with Windows PC’s?

      posted in Utilities
      justjim1220J
      justjim1220
    • RE: Change newsfeed title to image/logo?

      @cyberphox

      Did you get your to work?

      Apologies for the mistakes posted by forums.

      posted in Development
      justjim1220J
      justjim1220
    • RE: Change newsfeed title to image/logo?

      @cyberphox

      Working on it!!! :smiling_face_with_sunglasses:

      posted in Development
      justjim1220J
      justjim1220
    • RE: Config help

      @sojourner

      Thanks for the heads up! Would have liked to have known that a couple of years ago!!! :winking_face:

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • 1 / 1