• 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
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Blank black screen | Noob

Scheduled Pinned Locked Moved Troubleshooting
44 Posts 12 Posters 55.6k Views 11 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    smithdsl @MichMich
    last edited by Aug 1, 2016, 6:48 PM

    @MichMich How do I dump the log file?

    1 Reply Last reply Reply Quote 0
    • M Offline
      MichMich Admin
      last edited by Aug 1, 2016, 6:49 PM

      It’s not the node log. It’s the console log you can see in the developers tools. A screenshot (with the red error messages) is enough.

      1 Reply Last reply Reply Quote 0
      • M Offline
        MichMich Admin
        last edited by Aug 2, 2016, 8:17 PM

        I just pushed a possible fix to the develop branch. Please let me know if this solves the issue.

        1 Reply Last reply Reply Quote 0
        • D Offline
          dejayou
          last edited by Aug 3, 2016, 4:28 PM

          Hi MichMich- I am using the new develop branch and whatever the fix was is not working for me. I am still getting the blank black screen. I also wasn’t able to fix it with changing the naming conventions related to the language settings that worked for others.

          1 Reply Last reply Reply Quote 0
          • M Offline
            MichMich Admin
            last edited by Aug 3, 2016, 4:48 PM

            In your case its probably an other issue. Could you share your config.js (don’t forget to take out sensitive info)?

            1 Reply Last reply Reply Quote 0
            • D Offline
              dejayou
              last edited by MichMich Aug 4, 2016, 7:07 AM Aug 4, 2016, 2:48 AM

              Hi MichMich,
              Thank you for continuing to work with me on this matter. Here is the config file:

              /* Magic Mirror Config Sample
               *
               * By Michael Teeuw http://michaelteeuw.nl
               * MIT Licensed.
               */
              var config = {
                  port: 8080,
              
                  language: "nl",
                  timeFormat: 24,
                  units: "metric",
              
                  modules: [{
                      module: "alert"
                  },
                          {
                      module: "wuforecast",
                      position: "top_right", // This can be any of the regions.
                      // Best results in left or right regions.
                      config: {
                          // See ‘Configuration options’ for more information.
                          location: "Cleveland",
                          appid: "5095830b868b90bcc31affdad4911325" //wunderground.com API key.
                      }
                  },
                          {
                      module: "clock",
                      position: "top_left"
                  },
                          {
                      module: "calendar",
                      header: "US Holidays",
                      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: "Cleveland",
                          locationID: "4614088", //ID from bulk.openweather.org/sample/
                          appid: "5095830b868b90bcc31affdad4911325"
                      }
                  },
                          {
                      module: "weatherforecast",
                      position: "top_right",
                      header: "Weather Forecast",
                      config: {
                          location: "Cleveland",
                          locationID: "4614088", //ID from bulk.openweather.org/sample/
                          appid: "5095830b868b90bcc31affdad4911325"
                      }
                  },
                          {
                      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;
              }
              
              1 Reply Last reply Reply Quote 0
              • M Offline
                MichMich Admin
                last edited by Aug 4, 2016, 7:11 AM

                @dejayou: could you try your magic mirror without the wuforecast module?

                1 Reply Last reply Reply Quote 0
                • D Offline
                  dejayou
                  last edited by Aug 4, 2016, 11:53 AM

                  That did it! Amazing thank you!

                  1 Reply Last reply Reply Quote 1
                  • S Offline
                    spazehorst
                    last edited by spazehorst Aug 6, 2016, 2:45 PM Aug 6, 2016, 2:41 PM

                    Hello @MichMich and everyone!

                    First of all big thanks for this really cool project, my bathroom mirror is progressing well ;-)

                    Unfortunately I cannot confirm that this issue here is solved.

                    After succeeding to set up a Pi 1 with the serveronly feature, I ordered a Pi 3, did almost the same but maybe not thoroughly, thought I messed up, and started over from scratch:

                    I ran the automatic installer and left the config.js.sample as it was (this was the lucky move!). I started the mirror with DISPLAY=:0 npm start. The interface shows up and gives the message: please create a config.js file.
                    But when I do mv config.js.sample config.js and restart the mirror, I get a black screen. When I now set the language to ‘’, it works as supposed.
                    So maybe also one of the default modules messes up (like the “wuforecast”)?
                    Anyhow may I suggest to just set the language field blank in the config.js.sample, so that others don’t stumble upon this?

                    Thank you and Cheers, Patrick

                    PS:
                    Pi 3 Model B v1.2
                    $uname -a
                    Linux raspberrypi 4.4.11-v7+ #888 SMP Mon May 23 20:10:33 BST 2016 armv7l GNU/Linux

                    The only commands I ever executed after reinstall were:
                    sudo su
                    sudo apt-get update && apt-get dist-upgrade -y
                    sudo apt-get install -y x11-xserver-utils unclutter matchbox vim
                    curl -sL https://raw.githubusercontent.com/MichMich/MagicMirror/master/installers/raspberry.sh | bash
                    cd MagicMirror/
                    DISPLAY=:0 npm start

                    M 1 Reply Last reply Aug 6, 2016, 3:41 PM Reply Quote 0
                    • M Offline
                      MichMich Admin @spazehorst
                      last edited by Aug 6, 2016, 3:41 PM

                      @spazehorst could you try it with The sample config? Especially no 3rd party modules.

                      S 1 Reply Last reply Aug 6, 2016, 7:31 PM Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 5
                      • 4 / 5
                      4 / 5
                      • First post
                        31/44
                        Last post
                      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