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

    Posts

    Recent Best Controversial
    • MMM-Remote Control Help!

      The remote control module is not working for me to any extent, when I whitelist the IPs for my school’s wifi (following the HowToWhitelistIP thread’s directions) in every way stated, I get the “this device is not allowed to access…” message. Then, when I allow all IPs access I get the “cannot get remote/html” message. Any help would be great! Thanks!

      posted in Troubleshooting
      T
      twosix
    • RE: Making Frame/Case for Magic Mirror

      @McSorley Did you glue the frame to the box? If so, how far did you offset it from the wood to create the lip?

      posted in Hardware
      T
      twosix
    • RE: Making Frame/Case for Magic Mirror

      @Mykle1 Did you glue the frame to the box? If so, how far did you offset it from the wood to create the lip?

      posted in Hardware
      T
      twosix
    • RE: ipWhitelist HowTo

      The remoter control module is not working for me to any extent, when I whitelist the IPs for my school’s wifi (following the HowToWhitelistIP thread’s directions) in every way stated, I get the “this device is not allowed to access…” message. Then, when I allow all IPs access I get the “cannot get remote/html” message. Any help would be great! Thanks!

      posted in Tutorials
      T
      twosix
    • RE: [Remote-Control] Shutdown, Configure and Update your MagicMirror

      The module is not working for me to any extent, when I whitelist the IPs for my school’s wifi (following the HowToWhitelistIP thread’s directions) in every way stated, I get the “this device is not allowed to access…” message. Then, when I allow all IPs access I get the “cannot get remote/html” message. Any help would be great! Thanks!

      posted in System
      T
      twosix
    • RE: Trouble with config file, Error Create Config File

      @Mykle1 Okay I did that, and figured out the problem is my calendar…is there anyway I can fix that?

      posted in Troubleshooting
      T
      twosix
    • RE: Trouble with config file, Error Create Config File

      @bhepler Thank you! I did this and it reset my config file, and that booted up fine, but when I put my information in, and started it:
      cd MagicMirror
      npm start

      I got the "WARNING? Could not validate config file. Please correct syntax errors. Starting with default configuration.”

      Then load it said “Please create config file.”

      posted in Troubleshooting
      T
      twosix
    • RE: Trouble with config file, Error Create Config File

      @cowboysdude Thank you, I ran that through my code and there appears to be no problems…I just can’t figure out what the problem is…I boot the mirror up normally by going:

      cd Magic Mirror
      npm start

      and then I get the “WARNING? Could not validate config file. Please correct syntax errors. Starting with default configuration.”

      and then when it loads the “Please create config file.”

      posted in Troubleshooting
      T
      twosix
    • RE: Trouble with config file, Error Create Config File

      @Mykle1 I did the same, I fired up the sample config and it worked fine, but then after I put my stuff in, it gave me the “WARNING? Could not validate config file. Please correct syntax errors. Starting with default configuration.”

      And then when I loads up it says, “Please create config file.”

      posted in Troubleshooting
      T
      twosix
    • RE: Trouble with config file, Error Create Config File

      @Mykle1 Thank you, but that didn’t work…I looked back at my code and realized that the full calendar link got cut off, and it did have a quote on the end of it…so I am still not sure what is happening, thanks though!

      language: "en",
          timeFormat: "12",
          units: "imperial",
      
          modules: [
                  {
                          module: "alert",
                  },
                  {
                          module: "updatenotification",
                          position: "top_bar"
                  },
                  {
                          module: "clock",
                          position: "top_left"
                  },
                  {
                          module: "calendar",
                          header: "US Holidays",
                          position: "top_left",
                          config: {
                                  calendars: [
                                          {
                                                  symbol: "calendar-check-o ",
                                                  url: "webcal://p55-calendars.icloud.com/published/2/TDWYwJjbv2BpM3HLxxxxxxxxxxxxxxxxxvZM-3TNpXNgZXsi192SI7M6pxxxxxxxxxxxxxxxxxxxxxxxXZCkcApre7Kg\"
                                          }
                                  ]
                          }
                  },
                  {
                          module: "compliments",
                          position: "lower_third"
                  },
                  {
                          module: "currentweather",
                          position: "top_right",
                          config: {
                                  location: "",
                                  locationID: "4460243",  //ID from http://www.openweathermap.org/help/city_list.txt
                                  appid: "1b3ccd18090bb8048b4bb5830e444aa1"
                          }
                  },
                  {
                          module: "weatherforecast",
                          position: "top_right",
                          header: "Weather Forecast",
                          config: {
                                  location: "",
                                  locationID: "4460243",  //ID from http://www.openweathermap.org/help/city_list.txt
                                  appid: "1b3ccd18090bb8048b4bb5830e444aa1"
                          }
                  },
                  {
                          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
                          }
                  },
          ]
      
      posted in Troubleshooting
      T
      twosix
    • Trouble with config file, Error Create Config File

      So when I boot up the mirror I get the unable to validate config error, and gives me a need to create config screen when booted. How do I fix?

      /* Magic Mirror Config Sample
       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       */
      
      var config = {
              port: 8080,
              ipWhitelist: ["::ffff:192.168.1/24", "127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses.
      
              language: "en",
              timeFormat: "12",
              units: "imperial",
      
              modules: [
                      {
                              module: "alert",
                      },
                      {
                              module: "updatenotification",
                              position: "top_bar"
                      },
                      {
                              module: "clock",
                              position: "top_left"
                      },
                      {
                              module: "calendar",
                              header: "US Holidays",
                              position: "top_left",
                              config: {
                                      calendars: [
                                              {
                                                      symbol: "calendar-check-o ",
                                                      url: "webcal://p55-calendars.icloud.com/published/2/TDWYwJjbv2BpxxxxxxxxxxvpNrb4SlxsvZM-xxxxxxx\"
                                              }
                                      ]
                              }
                      },
                      {
                              module: "compliments",
                              position: "lower_third"
                      },
                      {
                              module: "currentweather",
                              position: "top_right",
                              config: {
                                      location: "",
                                      locationID: "4460243",  //ID from http://www.openweathermap.org/help/city_list.txt
                                      appid: "1b3ccd1809XXXXXXXXb5830e444aa1"
                              }
                      },
                      {
                              module: "weatherforecast",
                              position: "top_right",
                              header: "Weather Forecast",
                              config: {
                                      location: "",
                                      locationID: "4460243",  //ID from http://www.openweathermap.org/help/city_list.txt
                                      appid: "1b3ccd1809XXXXXXXXb5830e444aa1"
                              }
                      },
                      {
                              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 Troubleshooting
      T
      twosix
    • RE: Problem Getting IP Address for Remote Control Module

      @Mykle1 Thanks, do you have any visuals or guide on how to do this? When I go to the static section of the wifi network it is blank. How do I fix this?

      posted in Troubleshooting
      T
      twosix
    • Problem Getting IP Address for Remote Control Module

      I am having trouble getting the IP address for my iPhone to use with the Remote Control module. The IP address often fluctuates, is there any way I can select all possible IPs or a better way to get the IP for my iPhone?

      posted in Troubleshooting
      T
      twosix
    • RE: Problem with MMM-Remote Control

      Yes, that is what I did. It is the under IPWhitelist, correct? Otherwise, that didn’t work for me.

      posted in Troubleshooting
      T
      twosix
    • Help with Weather Modules!

      For the weather modules, if I want to switch to Wunderground, do I hide the default and just keep Wunderground visible? If not, what do I do?

      posted in Troubleshooting
      T
      twosix
    • Making Frame Question?

      So, I am looking into making a frame, and have figured the best option for me would be to but a custom made picture frame with plexiglass, and swap the glass for the two way mirror. Would that work? If it would, do I glue or nail it to the shell that contains the monitor? If it wouldn’t, what should I do instead?

      posted in Hardware
      T
      twosix
    • 1 / 1