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: Can you help me about this error

      @fonfon

      no need to cut/paste each module…

      you can add

         disabled: false
      

      above each module, like this…

      {
          disabled: false,
          module: "clock",
          position: "top_center"
      },
      

      then, you can change it to true to shut off the module.

      it would be the easiest way to determine which module is causing the issue.
      load all your modules back into the config.js,
      add the code above,
      make all the default modules ‘false’,
      and all the rest ‘true’,
      refresh your mirror,
      if you still get the same issues,
      turn off the mirror and your terminal,
      maybe even restart your computer,
      then open your terminal,
      restart the mirror with ‘npm start -dev’
      this will give you an error log, find that and post it in here,
      this would be easier for us to help you

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: [DONE] New two way community order for all european countries - Open until 03 June 2018

      @qu1que

      A two-way mirror can be looked through from both side with a mirror reflection on one side

      A one-way mirror is usually pretty difficult to look through the mirrored side, but can easily be look through the non-mirrored side.

      They usually have a rating, like most one-ways will only let around 75 to 95 percent of light through the mirrored side.

      whereas a two-way can range from 5% to 70%, with the most common being around 35-50%.

      At least that what I found during my research.

      posted in Hardware
      justjim1220J
      justjim1220
    • RE: Sync private iCloud calendar with MagicMirror

      @maros

      I work mainly with Google, I haven’t personally used iCloud. Have also worked with Yahoo and Hotmail. Google is my favorite…

      This is my list of calendars:
      0_1533243435622_Screenshot (22).png

      And, this is how I put into my calendar module…

      "calendars": [
        {
          "name": "Family Stuff",
          "symbol": "heart@fa",
          "url": "Calendar link here",
          "interval": 24*60*60*1000
        },
        {
          "name": "US Holiday",
          "url": "Calendar link here",
          "symbol": "gift@fa",
          "interval": 24*60*60*1000,
          "maxEntries": 50, "maxDays":365
        },
        {
           "name": "Birthdays",
           "symbol": "birthday-cake",
           "url": "Calendar link here"
        },
        {
        // "name": "KC Chiefs",
           "symbol": "football-ball@fa",
           "url": "Calendar link here",
           "interval": 24*60*60*1000
        },
        {
           "name": "NFL Games",
           "url": "Calendar link here",
           "symbol": "football-ball@fa",
           "interval": 24*60*60*1000
        },
        {
           "name": "NFL Playoff Games",
           "url": "Calendar link here",
           "symbol": "football-ball@fa",
           "interval": 24*60*60*1000
        },
      ],
      
      posted in Tutorials
      justjim1220J
      justjim1220
    • RE: MMM-BMW-DS (A different kind of weather module)

      @flieger4711

      All your info is right there in that link…
      just add it into your code:

      {
      	disabled: false,
      	module: "MMM-BMW-DS",
      	position: "bottom_bar",
      	config: {
      		apiKey: "7146c1592f88d9179586e0fa404aad4b", // Free API key @ darksky.net
      		tempUnits: "C",
                      lat: '49.0069', 
                      lng: '8.4034',  
      	        useHeader: false,           // true if you want a header                 
      		header: "Your header",
      		maxWidth: "100%"
           }
      },
      
      posted in Utilities
      justjim1220J
      justjim1220
    • RE: Sync private iCloud calendar with MagicMirror

      @maros

      there is a default calendar module that automatically came with MM2

      And there are others, I personally like MMM-CalendarExt.

      posted in Tutorials
      justjim1220J
      justjim1220
    • RE: How to change icons

      @lahim

      OK, I think I may have found the solution…

      I’ll start by showing you my calendar categories:
      0_1533238944252_Screenshot (20).png

      This might be helpful to have handy…

      Font Awesome Cheat Sheet

      Now the code to put in your config.js file in the calendar code:

      "calendars": [
        {
          "name": "Family Stuff",
          "symbol": "heart@fa",
          "url": "Calendar link here"
          "interval": 24*60*60*1000,
        },
        {
          "name": "US Holiday",
          "url": "Calendar link here",
          "symbol": "gift@fa",
          "interval": 24*60*60*1000,
          "maxEntries": 50, "maxDays":365,
        },
        {
        // "name": "Birthdays",
           "symbol": "birthday=cake",
           "url": "Calendar link here",
        },
        {
        // "name": "KC Chiefs",
           "symbol": "football-ball@fa",
           "url": "Calendar link here",
           "interval": 24*60*60*1000,
        },
        {
        // "name": "NFL Games",
           "symbol": "calendar",
           "url": "football-ball@fa",
           "interval": 24*60*60*1000,
        },
        {
           "name": "NFL Playoff Games",
           "symbol": "user-secret@fa",
           "url": "football-ball@fa",
           "interval": 24*60*60*1000,
        },
      ],
      

      Let me know if this works for you.
      I have yet to try it, but now that I found it, I think I will. :winking_face:

      posted in Custom CSS
      justjim1220J
      justjim1220
    • RE: How to change icons

      @lahim

      Apologies, been kinda busy last few days…

      I am looking for the answer to your question.

      I haven’t used the default calendar for quite a while now.

      I really like the MMM-CalendarExt modules, although, I never really thought about it until now, it’s the same way… same icon for each event.

      I shall do some researching to see if I can find a solution…

      posted in Custom CSS
      justjim1220J
      justjim1220
    • RE: electron-chromedriver@1.7.1 error

      @kyeongzze

      I think you have to run the Electron update in root…

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: RSS FEED

      @jeffreyking

      open your newsfeed.js

      find this line… ‘if (!this.config.showFullArticle) {’

      copy and paste that section with my section in the above post.

      posted in Utilities
      justjim1220J
      justjim1220
    • RE: YouTube video not available

      @sean

      Yeah, with mine, when I get those errors, I remove the video, and search for a different one.
      There may be 5-10 or videos of the same song, so it’s trial and error from there.

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: RSS FEED

      @jeffreyking

      I added the marquee script in the newsfeed.js file to make mine scroll across the screen…

      }
      
      			if (!this.config.showFullArticle) {
      				var title = document.createElement("div");
      				title.className = "normal large bold" + (!this.config.wrapTitle ? " no-wrap" : " ");
      				title.innerHTML = "<marquee scrollamount=10 scrolldelay=90>" + this.newsItems[this.activeItem].title + "</marquee><br>";
      				wrapper.appendChild(title);
      			}
      
      posted in Utilities
      justjim1220J
      justjim1220
    • RE: MMA - Praytime

      @bhepler

      My issue with it is not knowing why I would put just the first quotes and not finish it with quotes…

      posted in Requests
      justjim1220J
      justjim1220
    • RE: MMA - Praytime

      @bhepler

      Thanks for the catch!
      didn’t even noticed That I had put that there!!!

      posted in Requests
      justjim1220J
      justjim1220
    • RE: MMA - Praytime

      @govabm

      Made a few modifications…
      Will leave the quotes to you to fix!

      /* Magic Mirror config.js
       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       *
       * For more information how you can configurate this file
       * See https://github.com/MichMich/MagicMirror#configuration
       *
       */
      
      var config = {
          address: "localhost",
              // Address to listen on, can be:
              // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
              // - another specific IPv4/6 to listen on a specific interface
              // - "", "0.0.0.0", "::" to listen on any interface
              // Default, when address config is left out, is "localhost"
          port: 8080,
          ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
              // or add a specific IPv4 of 192.168.1.5 :
              // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
              // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
              // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"]
      
          language: “de”,
          timeFormat: 24,
          units: “metric”,
      
      modules: [
      {
          module: ‘MMM-PrayerTime’,
          position: ‘bottom_right’,	.
          config: {
              apiVersion: ‘1.0’,
              lat: 31.972836,
              lon: 35.898916,
              timezone: ‘Asia/Dubai’, // please refer to http://php.net/manual/en/timezones.asia.php
              timeFormat: 12,
              method: 5,
              playAdzan: [‘fajr’, ‘dhuhr’, ‘asr’, ‘maghrib’, ‘isha’],
              notDisplayed: [‘midnight’, ‘sunset’],
              useUpdateInterval: true,
              updateInterval: 86400 * 1000, // How often do you want to fetch new praying time? (milliseconds)
              animationSpeed: 2.5 * 1000, // Speed of the update animation. (milliseconds)	
              language: config.language | ‘en’,
              showAdzanAlert: true,
              alertTimer: 15000
          }
      },
      
      {
          module: “alert”
      },
      
      {
          module: "updatenotification",
          position: "top_bar"
      },
      
      {
          module: "clock",
          position: "top_left"
      },
      
      {
          module: "calendar",
          header: "Ferien NRW",
          position: "top_left",
              config: {
                  calendars: [
                      symbol: "calendar-check-o ",
                      url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
                  ]
              }
      },
      
      {
          module: "compliments",
          position: "lower_third"
      },
      
      {
          module: "currentweather",
          position: "top_right",
          config: {
              location: "New York",
              locationID: "",  //ID from http://www.openweathermap.org/help/city_list.txt
              appid: "YOUR_OPENWEATHER_API_KEY"
          }
      },
      
      {
          module: "weatherforecast",
          position: "top_right",
          header: "Weather Forecast",
          config: {
              location: "New York",
              locationID: "5128581",  //ID from http://www.openweathermap.org/help/city_list.txt
              appid: "YOUR_OPENWEATHER_API_KEY"
          }
      },
      
      {
          module: "newsfeed",
          position: "bottom_bar",
          config: {
              feeds: [
              {
                      title: "New York Times",
                      url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
              }
            ],
              showSourceTitle: true,
              showPublishDate: true
          }
      },
      
      ]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW **************/
      if (typeof module !== “undefined”) {module.exports = config;}
      
      posted in Requests
      justjim1220J
      justjim1220
    • RE: Where are you from?

      Misery,

      Er, ummm, Missouri

      Bethany, MO

      AKA… 30 miles East of BFE!!!

      posted in General Discussion
      justjim1220J
      justjim1220
    • RE: MMA - Praytime

      @govabm

      there where a few syntax errors,

      But the biggest issues I am finding is your quotes and double quotes…

      this is what is showing for in the cofig I copied from your config…

      ‘bottom_right’
      “alert”

      this is what it should look like…

      ‘bottom_right’
      “alert”

      you can see there is a difference by the slant of the quotes…

      Hope this helps!

      posted in Requests
      justjim1220J
      justjim1220
    • RE: Can you help me about this error

      @fonfon

      next thing to try it to npm install in each individual module directory

      then npm rebuild in the MagicMagic directory

      let me know if that helps!

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: YouTube video not available

      @sean

      Yeah, it’s the same on this end as well…
      YouTube is just really weird!

      I Have my own created YouTube created module, And it does the same thing!

      https://github.com/justjim1220/MMM-RandomYouTubePlayer

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: YouTube video not available

      @darbos

      some YouTube videos won’t play in an app outside of the actual YouTube site.

      Try a different video.

      I have a playlist, and have removed quite a few videos due to this issue.

      Sometimes if you find a different source for the same video, it will work, so try that route also.

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: Can you help me about this error

      @fonfon

      I had that error a few times, it was always an error in the config.js file. use a Js Linter to help you find the errors.

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • 1
    • 2
    • 23
    • 24
    • 25
    • 26
    • 27
    • 32
    • 33
    • 25 / 33