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.

    MMM-Carousel not displaying

    Scheduled Pinned Locked Moved Forum
    96 Posts 4 Posters 60.0k Views 4 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
      sdetweil @pastormingle
      last edited by

      @pastormingle see
      https://forum.magicmirror.builders/topic/15778/fix-for-black-screen-in-2-16-and-later

      Sam

      How to add modules

      learning how to use browser developers window for css changes

      P 1 Reply Last reply Reply Quote 0
      • P Offline
        pastormingle @sdetweil
        last edited by

        @sdetweil Still not able to display… I ran the following command and it didn’t return any errors…

        pi@raspberrypi:~/MagicMirror/modules/MMM-CalendarExt $ npm init -y
        Wrote to /home/pi/MagicMirror/modules/MMM-CalendarExt/package.json:
        
        {
          "name": "MMM-CalendarExt",
          "version": "1.0.0",
          "description": "Alternative calendar module for [MagicMirror](https://magicmirror.builders/)",
          "main": "MMM-CalendarExt.js",
          "scripts": {
            "test": "echo \"Error: no test specified\" && exit 1"
          },
          "repository": {
            "type": "git",
            "url": "git+https://github.com/eouia/MMM-CalendarExt.git"
          },
          "keywords": [],
          "author": "",
          "license": "ISC",
          "bugs": {
            "url": "https://github.com/eouia/MMM-CalendarExt/issues"
          },
          "homepage": "https://github.com/eouia/MMM-CalendarExt#readme",
          "dependencies": {
            "all": "0.0.0"
          },
          "devDependencies": {}
        }
        
        
        
        S 1 Reply Last reply Reply Quote 0
        • S Offline
          sdetweil @pastormingle
          last edited by

          @pastormingle all that does is built the empty packjson,which will be used by the
          npm install xxx -save

          that second step is what fixes the missing library xxx once you figure out it’s name from the log messages.

          ps. there are more than one potential missing library… so I teach u how to find it so next time you don’t have to post here to find the fix.

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          P 1 Reply Last reply Reply Quote 0
          • P Offline
            pastormingle @sdetweil
            last edited by

            @sdetweil guess i"m not following what the xxx file would be?

            P 1 Reply Last reply Reply Quote 0
            • P Offline
              pastormingle @pastormingle
              last edited by

              @pastormingle if i do a ctrl I i get the following
              ?
              ba69f498-8078-42ba-bd19-fccb95993f66-image.png

              S 1 Reply Last reply Reply Quote 0
              • S Offline
                sdetweil @pastormingle
                last edited by

                @pastormingle from the linked topic

                then regardless do

                npm install xxx
                where xxx is the library noted in the message

                cannot find module xxx

                to find this message, look in the output of npm start. or if you use pm2 to launch mm do
                pm2 logs --lines=50

                __----------------

                so you look for the message and get the name from it and replace xxx with the name

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                P 1 Reply Last reply Reply Quote 0
                • P Offline
                  pastormingle @sdetweil
                  last edited by

                  @sdetweil ```
                  pi@raspberrypi:~ $ pm2 logs --lines=50 MagicMirror
                  [TAILING] Tailing last 50 lines for [MagicMirror] process (change the value with --lines option)
                  /home/pi/.pm2/logs/MagicMirror-error.log last 50 lines:
                  0|MagicMir | - /home/pi/MagicMirror/js/electron.js
                  0|MagicMir | - /home/pi/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js
                  0|MagicMir | -
                  0|MagicMir | [14.12.2021 16:02.14.185] [ERROR] App threw an error during load
                  0|MagicMir | [14.12.2021 16:02.14.187] [ERROR] Error: Cannot find module ‘valid-url’
                  0|MagicMir | Require stack:
                  0|MagicMir | - /home/pi/MagicMirror/modules/MMM-CalendarExt/node_helper.js
                  0|MagicMir | - /home/pi/MagicMirror/js/app.js
                  0|MagicMir | - /home/pi/MagicMirror/js/electron.js
                  0|MagicMir | - /home/pi/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js
                  0|MagicMir | -
                  0|MagicMir | at Module._resolveFilename (internal/modules/cjs/loader.js:972:15)
                  0|MagicMir | at Function.n._resolveFilename (electron/js2c/browser_init.js:249:921)
                  0|MagicMir | at Function.Module._resolveFilename (/home/pi/MagicMirror/node_modules/module-alias/index.js:49:29)
                  0|MagicMir | at Module._load (internal/modules/cjs/loader.js:848:27)
                  0|MagicMir | at Function.f._load (electron/js2c/asar_bundle.js:5:12633)
                  0|MagicMir | at Module.require (internal/modules/cjs/loader.js:1032:19)
                  0|MagicMir | at require (internal/modules/cjs/helpers.js:72:18)
                  0|MagicMir | at Object. (/home/pi/MagicMirror/modules/MMM-CalendarExt/node_helper.js:3:18)
                  0|MagicMir | at Module._compile (internal/modules/cjs/loader.js:1152:30)
                  0|MagicMir | at Object.Module._extensions…js (internal/modules/cjs/loader.js:1173:10)
                  0|MagicMir | [14.12.2021 16:02.14.197] [ERROR] Whoops! There was an uncaught exception…
                  0|MagicMir | [14.12.2021 16:02.14.203] [ERROR] Error: Cannot find module ‘valid-url’
                  0|MagicMir | Require stack:
                  0|MagicMir | - /home/pi/MagicMirror/modules/MMM-CalendarExt/node_helper.js
                  0|MagicMir | - /home/pi/MagicMirror/js/app.js
                  0|MagicMir | - /home/pi/MagicMirror/js/electron.js
                  0|MagicMir | - /home/pi/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js
                  0|MagicMir | -
                  0|MagicMir | at Module._resolveFilename (internal/modules/cjs/loader.js:972:15)
                  0|MagicMir | at Function.n._resolveFilename (electron/js2c/browser_init.js:249:921)
                  0|MagicMir | at Function.Module._resolveFilename (/home/pi/MagicMirror/node_modules/module-alias/index.js:49:29)

                  S 1 Reply Last reply Reply Quote 0
                  • S Offline
                    sdetweil @pastormingle
                    last edited by

                    @pastormingle said in MMM-Carousel not displaying:

                    Error: Cannot find module ‘valid-url’

                    what is so hard about this?

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    P 1 Reply Last reply Reply Quote 0
                    • P Offline
                      pastormingle @sdetweil
                      last edited by

                      @sdetweil the module name is valid-url… i though it’s looking for a URL… http://url…

                      S 1 Reply Last reply Reply Quote 0
                      • S Offline
                        sdetweil @pastormingle
                        last edited by sdetweil

                        @pastormingle then

                        npm install valid-url --save

                        in the mm module folder

                        because xxx is valid-url in that error message

                        Sam

                        How to add modules

                        learning how to use browser developers window for css changes

                        P 1 Reply Last reply Reply Quote 0
                        • P Offline
                          pastormingle @sdetweil
                          last edited by

                          @sdetweil ```
                          ^C
                          pi@raspberrypi:~ $ npm install valid-url --save
                          npm WARN tsutils@3.21.0 requires a peer of typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta but none is installed. You must install peer dependencies yourself.
                          npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@2.3.2 (node_modules/fsevents):
                          npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@2.3.2: wanted {“os”:“darwin”,“arch”:“any”} (current: {“os”:“linux”,“arch”:“arm”})

                          • valid-url@1.0.9
                            updated 1 package and audited 964 packages in 19.443s

                          112 packages are looking for funding
                          run npm fund for details

                          found 22 vulnerabilities (19 moderate, 3 high)
                          run npm audit fix to fix them, or npm audit for details
                          pi@raspberrypi:~ $ cd MagicMirror
                          pi@raspberrypi:~/MagicMirror $ cd modules
                          pi@raspberrypi:~/MagicMirror/modules $ dir
                          Archive calendar_monthly default MMM-CalendarExt MMM-CalendarExtMinimonth MMM-CalendarExtTimeline MMM-Carousel MMM-GoogleTasks MMM-ip MMM-PaprikaMenu MMM-RAIN-MAP MMM-RAIN-MAP-L MMM-RAIN-MAPold
                          pi@raspberrypi:~/MagicMirror/modules $ npm install valid-url --save
                          npm WARN tsutils@3.21.0 requires a peer of typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta but none is installed. You must install peer dependencies yourself.
                          npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@2.3.2 (node_modules/fsevents):
                          npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@2.3.2: wanted {“os”:“darwin”,“arch”:“any”} (current: {“os”:“linux”,“arch”:“arm”})

                          • valid-url@1.0.9
                            added 1 package and audited 967 packages in 20.435s

                          112 packages are looking for funding
                          run npm fund for details

                          found 20 vulnerabilities (18 moderate, 2 high)
                          run npm audit fix to fix them, or npm audit for details
                          pi@raspberrypi:~/MagicMirror/modules $

                          S 1 Reply Last reply Reply Quote 0
                          • S Offline
                            sdetweil @pastormingle
                            last edited by

                            @pastormingle said in MMM-Carousel not displaying:

                            pi@raspberrypi:~/MagicMirror/modules

                            in the folder of the mm module having trouble

                            /home/pi/MagicMirror/modules/MMM-CalendarExt

                            Sam

                            How to add modules

                            learning how to use browser developers window for css changes

                            P 1 Reply Last reply Reply Quote 0
                            • P Offline
                              pastormingle @sdetweil
                              last edited by

                              @sdetweil ```
                              pi@raspberrypi:~/MagicMirror/modules/MMM-CalendarExt $ npm install valid-url --save

                              • valid-url@1.0.9
                                added 1 package and audited 2 packages in 0.951s
                                found 0 vulnerabilities
                              S P 2 Replies Last reply Reply Quote 0
                              • S Offline
                                sdetweil @pastormingle
                                last edited by

                                @pastormingle yes and then start MagicMirror

                                if u still get a black screen the check again…

                                Sam

                                How to add modules

                                learning how to use browser developers window for css changes

                                1 Reply Last reply Reply Quote 0
                                • P Offline
                                  pastormingle @pastormingle
                                  last edited by

                                  @pastormingle ```
                                  pi@raspberrypi:~/MagicMirror/modules/MMM-CalendarExt $ pm2 logs --lines=50 MagicMirror
                                  [TAILING] Tailing last 50 lines for [MagicMirror] process (change the value with --lines option)
                                  /home/pi/.pm2/logs/MagicMirror-error.log last 50 lines:
                                  0|MagicMir | -
                                  0|MagicMir | [14.12.2021 16:02.14.185] [ERROR] App threw an error during load
                                  0|MagicMir | [14.12.2021 16:02.14.187] [ERROR] Error: Cannot find module ‘valid-url’
                                  0|MagicMir | Require stack:
                                  0|MagicMir | - /home/pi/MagicMirror/modules/MMM-CalendarExt/node_helper.js
                                  0|MagicMir | - /home/pi/MagicMirror/js/app.js
                                  0|MagicMir | - /home/pi/MagicMirror/js/electron.js
                                  0|MagicMir | - /home/pi/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js
                                  0|MagicMir | -
                                  0|MagicMir | at Module._resolveFilename (internal/modules/cjs/loader.js:972:15)
                                  0|MagicMir | at Function.n._resolveFilename (electron/js2c/browser_init.js:249:921)
                                  0|MagicMir | at Function.Module._resolveFilename (/home/pi/MagicMirror/node_modules/module-alias/index.js:49:29)
                                  0|MagicMir | at Module._load (internal/modules/cjs/loader.js:848:27)
                                  0|MagicMir | at Function.f._load (electron/js2c/asar_bundle.js:5:12633)
                                  0|MagicMir | at Module.require (internal/modules/cjs/loader.js:1032:19)
                                  0|MagicMir | at require (internal/modules/cjs/helpers.js:72:18)
                                  0|MagicMir | at Object. (/home/pi/MagicMirror/modules/MMM-CalendarExt/node_helper.js:3:18)
                                  0|MagicMir | at Module._compile (internal/modules/cjs/loader.js:1152:30)
                                  0|MagicMir | at Object.Module._extensions…js (internal/modules/cjs/loader.js:1173:10)
                                  0|MagicMir | [14.12.2021 16:02.14.197] [ERROR] Whoops! There was an uncaught exception…
                                  0|MagicMir | [14.12.2021 16:02.14.203] [ERROR] Error: Cannot find module ‘valid-url’
                                  0|MagicMir | Require stack:
                                  0|MagicMir | - /home/pi/MagicMirror/modules/MMM-CalendarExt/node_helper.js
                                  0|MagicMir | - /home/pi/MagicMirror/js/app.js
                                  0|MagicMir | - /home/pi/MagicMirror/js/electron.js
                                  0|MagicMir | - /home/pi/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js
                                  0|MagicMir | -
                                  0|MagicMir | at Module._resolveFilename (internal/modules/cjs/loader.js:972:15)
                                  0|MagicMir | at Function.n._resolveFilename (electron/js2c/browser_init.js:249:921)
                                  0|MagicMir | at Function.Module._resolveFilename (/home/pi/MagicMirror/node_modules/module-alias/index.js:49:29)
                                  0|MagicMir | at Module._load (internal/modules/cjs/loader.js:848:27)
                                  0|MagicMir | at Function.f._load (electron/js2c/asar_bundle.js:5:12633)
                                  0|MagicMir | at Module.require (internal/modules/cjs/loader.js:1032:19)
                                  0|MagicMir | at require (internal/modules/cjs/helpers.js:72:18)
                                  0|MagicMir | at Object. (/home/pi/MagicMirror/modules/MMM-CalendarExt/node_helper.js:3:18)
                                  0|MagicMir | at Module._compile (internal/modules/cjs/loader.js:1152:30)
                                  0|MagicMir | at Object.Module._extensions…js (internal/modules/cjs/loader.js:1173:10) {
                                  0|MagicMir | code: ‘MODULE_NOT_FOUND’,
                                  0|MagicMir | requireStack: [
                                  0|MagicMir | ‘/home/pi/MagicMirror/modules/MMM-CalendarExt/node_helper.js’,
                                  0|MagicMir | ‘/home/pi/MagicMirror/js/app.js’,
                                  0|MagicMir | ‘/home/pi/MagicMirror/js/electron.js’,
                                  0|MagicMir | ‘/home/pi/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js’,
                                  0|MagicMir | undefined

                                  S 1 Reply Last reply Reply Quote 0
                                  • S Offline
                                    sdetweil @pastormingle
                                    last edited by sdetweil

                                    @pastormingle that message is from
                                    16:02.14.187

                                    so not recently

                                    pm2 stop all
                                    pm2 flush
                                    pm2 start 0

                                    wait
                                    pm2 stop all
                                    pm2 logs…

                                    Sam

                                    How to add modules

                                    learning how to use browser developers window for css changes

                                    P 1 Reply Last reply Reply Quote 0
                                    • P Offline
                                      pastormingle @sdetweil
                                      last edited by

                                      @sdetweil ```
                                      pi@raspberrypi:~/MagicMirror/modules/MMM-CalendarExt $ pm2 logs --lines=50 MagicMirror
                                      [TAILING] Tailing last 50 lines for [MagicMirror] process (change the value with --lines option)
                                      /home/pi/.pm2/logs/MagicMirror-error.log last 50 lines:
                                      0|MagicMir | /home/pi/MagicMirror/node_modules/electron/dist/electron exited with signal SIGINT

                                      /home/pi/.pm2/logs/MagicMirror-out.log last 50 lines:
                                      0|MagicMir | > magicmirror@2.16.0 start /home/pi/MagicMirror
                                      0|MagicMir | > ./run-start.sh $1
                                      0|MagicMir |
                                      0|MagicMir | [14.12.2021 16:56.24.531] [LOG] Starting MagicMirror: v2.16.0
                                      0|MagicMir | [14.12.2021 16:56.24.538] [LOG] Loading config …
                                      0|MagicMir | [14.12.2021 16:56.24.545] [LOG] Loading module helpers …
                                      0|MagicMir | [14.12.2021 16:56.24.547] [LOG] No helper found for module: alert.
                                      0|MagicMir | [14.12.2021 16:56.25.838] [LOG] Initializing new module helper …
                                      0|MagicMir | [14.12.2021 16:56.25.840] [LOG] Module helper loaded: MMM-GoogleTasks
                                      0|MagicMir | [14.12.2021 16:56.25.978] [LOG] Initializing new module helper …
                                      0|MagicMir | [14.12.2021 16:56.25.978] [LOG] Module helper loaded: updatenotification
                                      0|MagicMir | [14.12.2021 16:56.25.980] [LOG] No helper found for module: weather.
                                      0|MagicMir | [14.12.2021 16:56.25.981] [LOG] No helper found for module: clock.
                                      0|MagicMir | [14.12.2021 16:56.25.982] [LOG] No helper found for module: MMM-Carousel.
                                      0|MagicMir | [14.12.2021 16:56.25.983] [LOG] No helper found for module: MMM-RAIN-MAP.
                                      0|MagicMir | [14.12.2021 16:56.26.361] [LOG] Initializing new module helper …
                                      0|MagicMir | [14.12.2021 16:56.26.362] [LOG] Module helper loaded: MMM-PaprikaMenu
                                      0|MagicMir | [14.12.2021 16:56.26.462] [LOG] Initializing new module helper …
                                      0|MagicMir | [14.12.2021 16:56.26.463] [LOG] Module helper loaded: calendar
                                      0|MagicMir | [14.12.2021 16:56.26.464] [LOG] No helper found for module: calendar_monthly.
                                      0|MagicMir | [14.12.2021 16:56.26.465] [LOG] No helper found for module: helloworld.
                                      0|MagicMir | [14.12.2021 16:56.26.804] [LOG] Initializing new module helper …
                                      0|MagicMir | [14.12.2021 16:56.26.805] [LOG] Module helper loaded: MMM-CalendarExt
                                      0|MagicMir | [14.12.2021 16:56.26.808] [LOG] Initializing new module helper …
                                      0|MagicMir | [14.12.2021 16:56.26.809] [LOG] Module helper loaded: MMM-ip
                                      0|MagicMir | [14.12.2021 16:56.26.809] [LOG] All module helpers loaded.
                                      0|MagicMir | [14.12.2021 16:56.26.921] [LOG] Starting server on port 8080 …
                                      0|MagicMir | [14.12.2021 16:56.26.936] [LOG] Server started …
                                      0|MagicMir | [14.12.2021 16:56.26.937] [LOG] Connecting socket for: MMM-GoogleTasks
                                      0|MagicMir | [14.12.2021 16:56.26.938] [LOG] Starting node helper for: MMM-GoogleTasks
                                      0|MagicMir | [14.12.2021 16:56.26.939] [LOG] Connecting socket for: updatenotification
                                      0|MagicMir | [14.12.2021 16:56.26.940] [LOG] Connecting socket for: MMM-PaprikaMenu
                                      0|MagicMir | [14.12.2021 16:56.26.940] [LOG] Starting node_helper for module [MMM-PaprikaMenu]
                                      0|MagicMir | [14.12.2021 16:56.26.941] [LOG] Connecting socket for: calendar
                                      0|MagicMir | [14.12.2021 16:56.26.942] [LOG] Starting node helper for: calendar
                                      0|MagicMir | [14.12.2021 16:56.26.943] [LOG] Connecting socket for: MMM-CalendarExt
                                      0|MagicMir | [14.12.2021 16:56.26.944] [LOG] Connecting socket for: MMM-ip
                                      0|MagicMir | [14.12.2021 16:56.26.945] [LOG] Starting module helper: MMM-ip
                                      0|MagicMir | [14.12.2021 16:56.26.945] [LOG] Available network interface types: lo, wlan0
                                      0|MagicMir | [14.12.2021 16:56.26.946] [LOG] Sockets connected & modules started …
                                      0|MagicMir | [14.12.2021 16:56.27.226] [LOG] Launching application.
                                      0|MagicMir | [14.12.2021 16:56.29.659] [LOG] Create new calendarfetcher for url: https://calendar.google.com/calendar/ical/pastormike%40htni.org/private-34995d14cf5e15efc8bd68f680c508e3/basic.ics - Interval: 50000
                                      0|MagicMir | [14.12.2021 16:56.29.715] [LOG] Create new calendarfetcher for url: http://outlook.office365.com/owa/calendar/f2033a09d6504d21833241fb44df8c3c@dxc.com/a53b201c85bf4825a9290ce3ec96a8b2457585490405428856/calendar.ics - Interval: 50000
                                      0|MagicMir | [14.12.2021 16:56.29.857] [LOG] Create new calendarfetcher for url: https://calendar.google.com/calendar/ical/pastorcharlotte%40htni.org/private-448bd9e0646a570df025700cdd3f7155/basic.ics - Interval: 50000
                                      0|MagicMir | [14.12.2021 16:56.30.213] [INFO] Calendar-Fetcher: Broadcasting 6 events.
                                      0|MagicMir | [14.12.2021 16:56.30.556] [INFO] Calendar-Fetcher: Broadcasting 2 events.
                                      0|MagicMir | [14.12.2021 16:56.30.678] [LOG] MMM-PaprikaMenu: Week starts: 2021-12-13, next week starts: 2021-12-20
                                      0|MagicMir | [14.12.2021 16:56.30.699] [LOG] MMM-PaprikaMenu: Waiting on 0 Paprika recipe calls.
                                      0|MagicMir | [14.12.2021 16:56.30.700] [LOG] MMM-PaprikaMenu: All recipe queries returned.
                                      0|MagicMir | [14.12.2021 16:56.39.598] [INFO] Calendar-Fetcher: Broadcasting 10 events.

                                      S 1 Reply Last reply Reply Quote 0
                                      • S Offline
                                        sdetweil @pastormingle
                                        last edited by

                                        @pastormingle see no errors there

                                        let’s stop using pm2 during debug

                                        pm2 stop all
                                        cd ~/MagicMirror
                                        npm start &>somefile.txt

                                        wait til black screen
                                        ctrl-q

                                        the examine the contents of somefile.txt

                                        Sam

                                        How to add modules

                                        learning how to use browser developers window for css changes

                                        P 1 Reply Last reply Reply Quote 0
                                        • P Offline
                                          pastormingle @sdetweil
                                          last edited by

                                          @sdetweil npm ERR! missing script: start

                                          npm ERR! A complete log of this run can be found in:
                                          npm ERR! /home/pi/.npm/_logs/2021-12-14T23_05_21_577Z-debug.log

                                          P 1 Reply Last reply Reply Quote 0
                                          • P Offline
                                            pastormingle @pastormingle
                                            last edited by pastormingle

                                            @pastormingle ```

                                            magicmirror@2.16.0 start /home/pi/MagicMirror
                                            ./run-start.sh $1

                                            [14.12.2021 17:06.53.311] [LOG] Starting MagicMirror: v2.16.0
                                            [14.12.2021 17:06.53.315] [LOG] Loading config …
                                            [14.12.2021 17:06.53.322] [LOG] Loading module helpers …
                                            [14.12.2021 17:06.53.324] [LOG] No helper found for module: alert.
                                            [14.12.2021 17:06.54.616] [LOG] Initializing new module helper …
                                            [14.12.2021 17:06.54.618] [LOG] Module helper loaded: MMM-GoogleTasks
                                            [14.12.2021 17:06.54.753] [LOG] Initializing new module helper …
                                            [14.12.2021 17:06.54.753] [LOG] Module helper loaded: updatenotification
                                            [14.12.2021 17:06.54.754] [LOG] No helper found for module: weather.
                                            [14.12.2021 17:06.54.755] [LOG] No helper found for module: clock.
                                            [14.12.2021 17:06.54.756] [LOG] No helper found for module: MMM-Carousel.
                                            [14.12.2021 17:06.54.756] [LOG] No helper found for module: MMM-RAIN-MAP.
                                            [14.12.2021 17:06.55.135] [LOG] Initializing new module helper …
                                            [14.12.2021 17:06.55.136] [LOG] Module helper loaded: MMM-PaprikaMenu
                                            [14.12.2021 17:06.55.236] [LOG] Initializing new module helper …
                                            [14.12.2021 17:06.55.237] [LOG] Module helper loaded: calendar
                                            [14.12.2021 17:06.55.238] [LOG] No helper found for module: calendar_monthly.
                                            [14.12.2021 17:06.55.238] [LOG] No helper found for module: helloworld.
                                            [14.12.2021 17:06.55.577] [LOG] Initializing new module helper …
                                            [14.12.2021 17:06.55.577] [LOG] Module helper loaded: MMM-CalendarExt
                                            [14.12.2021 17:06.55.580] [LOG] Initializing new module helper …
                                            [14.12.2021 17:06.55.581] [LOG] Module helper loaded: MMM-ip
                                            [14.12.2021 17:06.55.581] [LOG] All module helpers loaded.
                                            [14.12.2021 17:06.55.694] [LOG] Starting server on port 8080 …
                                            [14.12.2021 17:06.55.708] [LOG] Server started …
                                            [14.12.2021 17:06.55.709] [LOG] Connecting socket for: MMM-GoogleTasks
                                            [14.12.2021 17:06.55.710] [LOG] Starting node helper for: MMM-GoogleTasks
                                            [14.12.2021 17:06.55.710] [LOG] Connecting socket for: updatenotification
                                            [14.12.2021 17:06.55.711] [LOG] Connecting socket for: MMM-PaprikaMenu
                                            [14.12.2021 17:06.55.712] [LOG] Starting node_helper for module [MMM-PaprikaMenu]
                                            [14.12.2021 17:06.55.712] [LOG] Connecting socket for: calendar
                                            [14.12.2021 17:06.55.713] [LOG] Starting node helper for: calendar
                                            [14.12.2021 17:06.55.713] [LOG] Connecting socket for: MMM-CalendarExt
                                            [14.12.2021 17:06.55.714] [LOG] Connecting socket for: MMM-ip
                                            [14.12.2021 17:06.55.715] [LOG] Starting module helper: MMM-ip
                                            [14.12.2021 17:06.55.715] [LOG] Available network interface types: lo, wlan0
                                            [14.12.2021 17:06.55.716] [LOG] Sockets connected & modules started …
                                            [14.12.2021 17:06.55.995] [LOG] Launching application.
                                            [14.12.2021 17:06.58.663] [LOG] Create new calendarfetcher for url: http://outlook.office365.com/owa/calendar/f2033a09d654825a9290ce3ec9657585490405428856/calendar.ics - Interval: 50000
                                            [14.12.2021 17:06.58.696] [LOG] Create new calendarfetcher for url: https://calendar.google.com/calendar/ical/pastormike%40htni.org/private-34995d14cf5e15efc8bd68f680c508e3/basic.ics - Interval: 50000
                                            [14.12.2021 17:06.58.766] [LOG] TASKS SERVICE ALREADY RUNNING, DONT NEED TO AUTHENTICATE AGAIN
                                            [14.12.2021 17:06.58.884] [LOG] Create new calendarfetcher for url: https://calendar.google.com/calendar/ical/pastorcharlotte%40htni.org/private-448bd900cdd3f7155/basic.ics - Interval: 50000
                                            [14.12.2021 17:06.59.198] [INFO] Calendar-Fetcher: Broadcasting 6 events.
                                            [14.12.2021 17:06.59.540] [INFO] Calendar-Fetcher: Broadcasting 2 events.
                                            [14.12.2021 17:06.59.674] [LOG] MMM-PaprikaMenu: Week starts: 2021-12-13, next week starts: 2021-12-20
                                            [14.12.2021 17:06.59.696] [LOG] MMM-PaprikaMenu: Waiting on 0 Paprika recipe calls.
                                            [14.12.2021 17:06.59.697] [LOG] MMM-PaprikaMenu: All recipe queries returned.
                                            [14.12.2021 17:07.02.676] [LOG] Shutting down server…
                                            [14.12.2021 17:07.02.678] [LOG] Stopping module helper: MMM-GoogleTasks
                                            [14.12.2021 17:07.02.679] [LOG] Stopping module helper: updatenotification
                                            [14.12.2021 17:07.02.680] [LOG] Stopping module helper: MMM-PaprikaMenu
                                            [14.12.2021 17:07.02.682] [LOG] Stopping module helper: calendar
                                            [14.12.2021 17:07.02.683] [LOG] Stopping module helper: MMM-CalendarExt
                                            [14.12.2021 17:07.02.684] [LOG] Stopping module helper: MMM-ip

                                            P 1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 4 / 5
                                            • First post
                                              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