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

    e199504

    @e199504

    0
    Reputation
    2
    Profile views
    9
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    e199504 Unfollow Follow

    Latest posts made by e199504

    • RE: module that displays a certain text from a website, the text on the website is updated daily

      @sdetweil in the reeadme file it did not say to go inside the module and use npm install but once I did it started working.
      thank you

      posted in Requests
      E
      e199504
    • RE: Poemoftheday module showing black screen

      @sdetweil I copied again the array to add in the config file from the Poemoftheday

      here is the snippet of my config file

      // false, default for all NON-armv6l devices
      	// true, force serveronly mode, because you want to.. no UI on this device
      
      	modules: [
      		{
      			module: "alert",
      		},
        		{
          			module: "MMM-PoemOfTheDay",
          			position: "upper_third",
          			config: {
            				textLimit: 1000,
            				lineLimit: 10,
            				detectLanguageApiKey: "{API_KEY}",
            				languageSet: ["en", "es"],
            				updateInterval: 120000
          			}
        		},
      		{
       			module: "MMM-Breathwork",
        			position: "bottom_right",
      		},
      
      posted in Troubleshooting
      E
      e199504
    • RE: Poemoftheday module showing black screen

      @sdetweil I removed the dot. This time I am getting the error that I need to check my config file.

      When I runnpm run config:check, I am getting the following error

      [13.05.2021 15:06.26.058] [INFO]  Checking file...  /home/pi/MagicMirror/config/config.js
      [13.05.2021 15:06.26.130] [ERROR] Your configuration file contains syntax errors :(
      [13.05.2021 15:06.26.133] [ERROR] Line 56 column 3: Parsing error: Unexpected token {
      

      This is a snippet of my config file

      photo

      posted in Troubleshooting
      E
      e199504
    • Poemoftheday module showing black screen

      I have installed the module MMM-PoemOfTheDay,
      As instructed I added the following to the config file.

      modules: [
        {
          module: "MMM-PoemOfTheDay",
          position: "lower_third",
          config: {
            textLimit: 1000,
            lineLimit: 10,
            detectLanguageApiKey: "{API_KEY}",
            languageSet: ["en", "es"],
            updateInterval: 120000
          }
        }.
      ]
      
      

      Upon running the magic mirror, I only get a black screen.

      Did someone experience the same problem ?

      posted in Troubleshooting
      E
      e199504
    • RE: module that displays a certain text from a website, the text on the website is updated daily

      @amoniak how did you fix the black screen? I am getting the same error

      posted in Requests
      E
      e199504
    • Error: MagicMirror will not quite

      Hello,
      I have installed MM from here

      When I want to run the Magic Mirror, I am getting the following error

      "MagicMirror will not quit, but it might be good idea to check why this happened. Maybe no internet connection? "

      pi@raspberrypi:~/MagicMirror $ DISPLAY=:0 npm start
      
      > magicmirror@2.15.0 start
      > ./run-start.sh $1
      
      [10.05.2021 10:27.27.904] [LOG]   Starting MagicMirror: v2.15.0
      [10.05.2021 10:27.27.912] [LOG]   Loading config ...
      [10.05.2021 10:27.27.924] [LOG]   Loading module helpers ...
      [10.05.2021 10:27.27.928] [LOG]   No helper found for module: alert.
      [10.05.2021 10:27.28.211] [LOG]   Initializing new module helper ...
      [10.05.2021 10:27.28.212] [LOG]   Module helper loaded: updatenotification
      [10.05.2021 10:27.28.214] [LOG]   No helper found for module: clock.
      [10.05.2021 10:27.29.096] [LOG]   Initializing new module helper ...
      [10.05.2021 10:27.29.098] [LOG]   Module helper loaded: calendar
      [10.05.2021 10:27.29.100] [LOG]   No helper found for module: compliments.
      [10.05.2021 10:27.29.101] [LOG]   No helper found for module: weather.
      [10.05.2021 10:27.29.140] [LOG]   Initializing new module helper ...
      [10.05.2021 10:27.29.141] [LOG]   Module helper loaded: newsfeed
      [10.05.2021 10:27.29.142] [LOG]   All module helpers loaded.
      [10.05.2021 10:27.29.281] [LOG]   Starting server on port 8080 ...
      [10.05.2021 10:27.29.303] [LOG]   Server started ...
      [10.05.2021 10:27.29.305] [LOG]   Connecting socket for: updatenotification
      [10.05.2021 10:27.29.306] [LOG]   Connecting socket for: calendar
      [10.05.2021 10:27.29.308] [LOG]   Starting node helper for: calendar
      [10.05.2021 10:27.29.309] [LOG]   Connecting socket for: newsfeed
      [10.05.2021 10:27.29.310] [LOG]   Starting node helper for: newsfeed
      [10.05.2021 10:27.29.311] [LOG]   Sockets connected & modules started ...
      [10.05.2021 10:27.29.683] [ERROR] Whoops! There was an uncaught exception...
      [10.05.2021 10:27.29.697] [ERROR] Error: listen EADDRINUSE: address already in use 127.0.0.1:8080
          at Server.setupListenHandle [as _listen2] (net.js:1313:16)
          at listenInCluster (net.js:1361:12)
          at GetAddrInfoReqWrap.doListen [as callback] (net.js:1498:7)
          at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:68:8) {
        code: 'EADDRINUSE',
        errno: 'EADDRINUSE',
        syscall: 'listen',
        address: '127.0.0.1',
        port: 8080
      }
      [10.05.2021 10:27.29.700] [ERROR] MagicMirror will not quit, but it might be a good idea to check why this happened. Maybe no internet connection?
      [10.05.2021 10:27.29.701] [ERROR] If you think this really is an issue, please open an issue on GitHub: https://github.com/MichMich/MagicMirror/issues
      [10.05.2021 10:27.29.748] [LOG]   Launching application.
      
      posted in Troubleshooting
      E
      e199504
    • npm install stuck

      Hello,
      I’m following the link bellow to install MM
      https://docs.magicmirror.builders/getting-started/installation.html#manual-installation

      Everything goes right until I type

      npm install
      

      This process gets stuck midway, I have wanted an hour and nothing has change.

      posted in Troubleshooting
      E
      e199504
    • RE: Choosing the right glass

      @madscientist thank you for your help. What do you think about the second option? Perhaps you might have any information you came across from people who have used the Mirastar 4mm

      thank you

      posted in Hardware
      E
      e199504
    • Choosing the right glass

      Hello everyone,
      I’m about to build my first smart mirror, it is supposed to be a gift if everything goes as planned.

      Monitor:
      I do have a used 22inch BenQ monitor ( not sure if it considered a bright screen with lots of contrast because I have no other screen I can compare it to )
      Frame:
      I was thinking to get a 60x40 cm frame from amazon.
      Smart Mirror Location:
      The smart mirror will be place in a room where there are windows

      I live in Germany, so reading a thread from fellow members of this forum I found a website that is relatively cheap.
      Which one of these 3 options would be best ?
      1. Mirropane Chrome Spy 4 MM (48,00 €)
      https://www.brigla-shop.de/mm-genau/mirropane-chrome-spy-4-mm/smart-mirror-spiegel-288
      2. Mirastar 4 mm (33,60 €)
      https://www.brigla-shop.de/mm-genau/mirastar-4-mm/smart-mirror-spiegel-291

      thank you*

      posted in Hardware
      E
      e199504