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.

    Some Modules are showing up, but not on their right pages

    Scheduled Pinned Locked Moved Development
    9 Posts 2 Posters 278 Views 2 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.
    • R Offline
      richardhennessy
      last edited by richardhennessy

      i will post my config.js but simply i have looked all through the forum with no prevail. Some Modules are showing up, but not on their right pages. And the modules that should show on the first page do not show at all. Not sure where to go from here, i am stuck. I have no errors in any of my logs, my MMM-voice has an “undefined” error log and “initializing” but i havent touched it, and it worked prior. this lead me to believe there’s something else going on.

      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 or empty, 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"],
      
      useHttps: false, // Support HTTPS or not, default "false" will use HTTP
      httpsPrivateKey: "", // HTTPS private key path, only require when useHttps is true
      httpsCertificate: "", // HTTPS Certificate path, only require when useHttps is true
      
      language: "en",
      timeFormat: 12,
      units: "imperial",
      // serverOnly:  true/false/"local" ,
          // local for armv6l processors, default
          //   starts serveronly and then starts chrome browser
          // false, default for all  NON-armv6l devices
          // true, force serveronly mode, because you want to.. no UI on this device
      
      modules:[
      {
      module: "MMM-Logging",
      config: {
      }
      },
      {
      module: "MMM-SystemStats",
      classes: "default everyone",
      position: "top_right",
      config: {
      units: "metric",
      }
      },
      {
      module: "MMM-voice",
      classes: "default everyone",
      position: "bottom_left",
      config: {
      microphone: 2,
      debug: true
      }
      },
      {
      module: "MMM-pages",
      classes: "default everyone",
      config: {
      // rotationTime: 500,
      rotationFirstPage: 60000,
      modules: [
      ["clock", "MMM-wiki", "calendar"],
      ["currentweather", "weatherforecast"],
      ["MMM-Console", "MMM-LICE", "updatenotification"]
      ],
      fixed: ["MMM-voice", "MMM-page-indicator"],
      }
      },
      {
      module: "MMM-page-indicator",
      position: "top_bar",
      classes: "default everyone",
      config: {
      pages: 4,
      inactiveDimmed: false,
      inactiveHollow: true
      }
      },
      {
      module: 'MMM-Face-Reco-DNN',
      config: {
            // Logout 25 seconds after user was not detected any more
            // If they are detected within this period, the delay will start again
            logoutDelay: 25000,
            // How often the recognition starts in milliseconds
            // With a Raspberry Pi 3+ it works well every 2 seconds
            checkInterval: 2000,
            // Module set used for strangers or if no user is detected
            defaultClass: 'default',
            // Set of modules which should be shown for every recognised user
            everyoneClass: 'everyone',
            // XML to recognize with haarcascade
            cascade: 'modules/MMM-Face-Reco-DNN/tools/haarcascade_frontalface_default.xml',
            // Pre-encoded pickle with the faces
            encodings: 'modules/MMM-Face-Reco-DNN/tools/encodings.pickle',
            // Use Raspberry Pi camera or another type
            // 1 = RasPi camera, 0 = other camera
            usePiCamera: 1,
            // If using another type of camera, you can choose
            // i.e. 0 = /dev/video0 or 'http://link.to/live'
            source: 0,
            // Rotate camera
            rotateCamera: 0,
            // Method of facial recognition
            // dnn = deep neural network, haar = haarcascade
            method: 'dnn',
            // Which face detection model to use
            // "hog" is less accurate but faster on CPUs
            // "cnn" is a more accurate deep-learning model which is GPU/CUDA accelerated
            detectionMethod: 'hog',
            // How long in milliseconds modules take to hide and show
            animationSpeed: 0,
            // Path to Python to run the face recognition
            // null or '' means default path
            pythonPath: null,
            // Should a welcome message be shown using the MagicMirror alerts module?
            welcomeMessage: true,
            //Capture new pictures of recognized people, if unknown we save it in folder "unknown"
            // So you can extend your dataset and retrain it afterwards for better recognitions
            extendDataset: false,
            // If extendDataset is true, you need to set the full path of the dataset
            dataset: 'modules/MMM-Face-Reco-DNN/dataset/'
          }
      },
      {
      module: "MMM-wiki",
      position: "top_center",
      classes: "default everyone",
      config: {
      //category: "DidYouKnow",
      updateInterval: 90000
      }
      },
      {
      module:"MMM-LICE",
      position: "center_right",
                              classes: "default everyone",
      config: {
      accessKey: "d1b56fa9030b8a69a03e5569ea7a3abb",
      source: "USD",
      symbols: "JPY, CNY, CHF, EUR, CAD, GBP",
      useHeader: true,
      header: "BlMirror I.C.E",
      maxWidth: "300px",
      }
      },
      {
      module: "updatenotification",
      position: "top_bar",
                              classes: "default everyone",
      },
      {
      module: "clock",
      position: "top_left",
      classes: "default everyone",
      },
      {
      module: "calendar",
      position: "bottom_center",
      classes: "herman",
      header: "To-Dos",
      config: {
      calendars: [
      {
      symbol: "calendar-check",
      url: "https://calendar.google.com/calendar/ical/travisherman1995%40gmail.com/private-222d1bb9ac61711dec1dc28423f424ce/basic.ics"
      }
      ]
      }
      },
      {
      module: "currentweather",
      position: "top_right",
      classes: "default everyone",
      config: {
      location: "O'Fallon",
      locationID: "4401242", //http://bulk.openweathermap.org/sample/city.list.json.gz; unzip for cities
      appid: "156a8c883050a21f01107728ec98fb73"
      }
      },
      {
      module: "weatherforecast",
      position: "bottom_right",
      classes: "default everyone",
      header: "Weather Forecast",
      config: {
      animationSpeed: "3000",
      fade: false,
      roundTemp: true,
      maxNumberOfDays: "9",
        location: "O'Fallon",
      locationID: "4401242",
      appid: "156a8c883050a21f01107728ec98fb73"
      }
      },
      {
      module: "MMM-Console",
      position: "bottom_right",
      header: "Mirror Logs",
      classes: "default everyone",
      config: {lines: 15}
      },
      ],
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}```
      S 1 Reply Last reply Reply Quote 0
      • S Offline
        sdetweil @richardhennessy
        last edited by

        @richardhennessy said in Some Modules are showing up, but not on their right pages:

        you have two modules trying to control what is shown
        pages (using an array of module names)
        and face_reco-dnn ( using classes)

        i think i have to make up your mind

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        1 Reply Last reply Reply Quote 0
        • R Offline
          richardhennessy
          last edited by

          i have tried commenting out the Face-Reco and still have to same issue. However, i had both of these modules working together just the other day. I was having an issue with my camera being occupied by two diffenet modules, tried a work around and it didnt work so i just removed the other module that was trying to use it. I’ve tried ‘pm2 start dev’ to look at the console and there were no errors.

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

            @richardhennessy what shows in

            pm2 logs --lines=100

            there are two consoles… the dev console (shows the modulename.js view)
            and the logs (shows the nm start view (node_helpers)

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            1 Reply Last reply Reply Quote 0
            • R Offline
              richardhennessy
              last edited by

              PM2        | 2020-09-01T21:26:52: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:26:53: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:26:53: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:26:53: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:26:55: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:26:55: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:26:55: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:26:56: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:26:56: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:26:56: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:26:57: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:26:57: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:26:57: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:26:59: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:26:59: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:26:59: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:00: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:00: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:00: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:01: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:01: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:01: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:02: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:02: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:02: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:04: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:04: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:04: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:05: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:05: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:05: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:06: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:06: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:06: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:08: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:08: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:08: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:09: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:09: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:09: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:10: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:10: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:10: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:11: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:11: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:11: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:13: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:13: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:13: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:14: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:14: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:14: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:15: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:15: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:15: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:17: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:17: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:17: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:18: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:18: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:18: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:19: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:19: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:19: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:20: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:20: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:21: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:22: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:22: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:22: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:23: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:23: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:23: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:24: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:24: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:24: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:27:26: PM2 log: App [auto-boot:0] exited with code [1] via signal [SIGINT]
              PM2        | 2020-09-01T21:27:26: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:27:26: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:17:38: PM2 log: ===============================================================================
              PM2        | 2020-09-01T21:17:38: PM2 log: --- New PM2 Daemon started ----------------------------------------------------
              PM2        | 2020-09-01T21:17:38: PM2 log: Time                 : Tue Sep 01 2020 21:17:38 GMT-0500 (Central Daylight Time)
              PM2        | 2020-09-01T21:17:38: PM2 log: PM2 version          : 4.4.1
              PM2        | 2020-09-01T21:17:38: PM2 log: Node.js version      : 10.22.0
              PM2        | 2020-09-01T21:17:38: PM2 log: Current arch         : arm
              PM2        | 2020-09-01T21:17:38: PM2 log: PM2 home             : /home/pi/.pm2
              PM2        | 2020-09-01T21:17:38: PM2 log: PM2 PID file         : /home/pi/.pm2/pm2.pid
              PM2        | 2020-09-01T21:17:38: PM2 log: RPC socket file      : /home/pi/.pm2/rpc.sock
              PM2        | 2020-09-01T21:17:38: PM2 log: BUS socket file      : /home/pi/.pm2/pub.sock
              PM2        | 2020-09-01T21:17:38: PM2 log: Application log path : /home/pi/.pm2/logs
              PM2        | 2020-09-01T21:17:38: PM2 log: Worker Interval      : 30000
              PM2        | 2020-09-01T21:17:38: PM2 log: Process dump file    : /home/pi/.pm2/dump.pm2
              PM2        | 2020-09-01T21:17:38: PM2 log: Concurrent actions   : 2
              PM2        | 2020-09-01T21:17:38: PM2 log: SIGTERM timeout      : 1600
              PM2        | 2020-09-01T21:17:38: PM2 log: ===============================================================================
              PM2        | 2020-09-01T21:17:38: PM2 log: App [auto-boot:0] starting in -fork mode-
              PM2        | 2020-09-01T21:17:38: PM2 log: App [auto-boot:0] online
              PM2        | 2020-09-01T21:29:18: PM2 log: Stopping app:auto-boot id:0
              PM2        | 2020-09-01T21:29:19: PM2 log: App [auto-boot:0] exited with code [0] via signal [SIGINT]
              PM2        | 2020-09-01T21:29:19: PM2 log: pid=895 msg=process killed
              
              /home/pi/.pm2/logs/auto-boot-out.log last 100 lines:
              0|auto-boo | > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
              0|auto-boo |
              0|auto-boo |
              0|auto-boo | > magicmirror@2.12.0 start /home/pi/BlMirror/MagicMirror
              0|auto-boo | > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
              0|auto-boo |
              0|auto-boo |
              0|auto-boo | > magicmirror@2.12.0 start /home/pi/BlMirror/MagicMirror
              0|auto-boo | > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
              0|auto-boo |
              0|auto-boo |
              0|auto-boo | > magicmirror@2.12.0 start /home/pi/BlMirror/MagicMirror
              0|auto-boo | > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
              0|auto-boo |
              0|auto-boo |
              0|auto-boo | > magicmirror@2.12.0 start /home/pi/BlMirror/MagicMirror
              0|auto-boo | > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
              0|auto-boo |
              0|auto-boo |
              0|auto-boo | > magicmirror@2.12.0 start /home/pi/BlMirror/MagicMirror
              0|auto-boo | > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
              0|auto-boo |
              0|auto-boo |
              0|auto-boo | > magicmirror@2.12.0 start /home/pi/BlMirror/MagicMirror
              0|auto-boo | > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
              0|auto-boo |
              0|auto-boo |
              0|auto-boo | > magicmirror@2.12.0 start /home/pi/BlMirror/MagicMirror
              0|auto-boo | > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
              0|auto-boo |
              0|auto-boo |
              0|auto-boo | > magicmirror@2.12.0 start /home/pi/BlMirror/MagicMirror
              0|auto-boo | > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
              0|auto-boo |
              0|auto-boo |
              0|auto-boo | > magicmirror@2.12.0 start /home/pi/BlMirror/MagicMirror
              0|auto-boo | > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
              0|auto-boo |
              0|auto-boo |
              0|auto-boo | > magicmirror@2.12.0 start /home/pi/BlMirror/MagicMirror
              0|auto-boo | > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
              0|auto-boo |
              0|auto-boo |
              0|auto-boo | > magicmirror@2.12.0 start /home/pi/BlMirror/MagicMirror
              0|auto-boo | > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
              0|auto-boo |
              0|auto-boo |
              0|auto-boo | > magicmirror@2.12.0 start /home/pi/BlMirror/MagicMirror
              0|auto-boo | > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
              0|auto-boo |
              0|auto-boo |
              0|auto-boo | > magicmirror@2.12.0 start /home/pi/BlMirror/MagicMirror
              0|auto-boo | > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
              0|auto-boo |
              0|auto-boo |
              0|auto-boo | > magicmirror@2.12.0 start /home/pi/BlMirror/MagicMirror
              0|auto-boo | > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
              0|auto-boo |
              0|auto-boo |
              0|auto-boo | > magicmirror@2.12.0 start /home/pi/BlMirror/MagicMirror
              0|auto-boo | > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
              0|auto-boo |
              0|auto-boo | [2020-09-01 21:17:44.819] [LOG]    Starting MagicMirror: v2.12.0
              0|auto-boo | [2020-09-01 21:17:44.846] [LOG]    Loading config ...
              0|auto-boo | [2020-09-01 21:17:44.859] [LOG]    Loading module helpers ...
              0|auto-boo | [2020-09-01 21:17:47.019] [LOG]    Initializing new module helper ...
              0|auto-boo | [2020-09-01 21:17:47.021] [LOG]    Module helper loaded: MMM-voice
              0|auto-boo | [2020-09-01 21:17:47.023] [LOG]    No helper found for module: MMM-pages.
              0|auto-boo | [2020-09-01 21:17:47.025] [LOG]    No helper found for module: MMM-page-indicator.
              0|auto-boo | [2020-09-01 21:17:47.043] [LOG]    Initializing new module helper ...
              0|auto-boo | [2020-09-01 21:17:47.044] [LOG]    Module helper loaded: MMM-Face-Reco-DNN
              0|auto-boo | [2020-09-01 21:17:47.046] [LOG]    No helper found for module: MMM-wiki.
              0|auto-boo | [2020-09-01 21:17:47.053] [LOG]    Initializing new module helper ...
              0|auto-boo | [2020-09-01 21:17:47.053] [LOG]    Module helper loaded: MMM-LICE
              0|auto-boo | [2020-09-01 21:17:47.123] [LOG]    Initializing new module helper ...
              0|auto-boo | [2020-09-01 21:17:47.123] [LOG]    Module helper loaded: updatenotification
              0|auto-boo | [2020-09-01 21:17:47.124] [LOG]    No helper found for module: clock.
              0|auto-boo | [2020-09-01 21:17:47.227] [LOG]    Initializing new module helper ...
              0|auto-boo | [2020-09-01 21:17:47.228] [LOG]    Module helper loaded: calendar
              0|auto-boo | [2020-09-01 21:17:47.229] [LOG]    No helper found for module: currentweather.
              0|auto-boo | [2020-09-01 21:17:47.231] [LOG]    No helper found for module: weatherforecast.
              0|auto-boo | [2020-09-01 21:17:47.236] [LOG]    No helper found for module: MMM-Console.
              0|auto-boo | [2020-09-01 21:17:47.236] [LOG]    All module helpers loaded.
              0|auto-boo | [2020-09-01 21:17:47.447] [LOG]    Starting server on port 8080 ...
              0|auto-boo | [2020-09-01 21:17:47.479] [LOG]    Server started ...
              0|auto-boo | [2020-09-01 21:17:47.480] [LOG]    Connecting socket for: MMM-voice
              0|auto-boo | [2020-09-01 21:17:47.481] [LOG]    Starting module helper: MMM-voice
              0|auto-boo | [2020-09-01 21:17:47.482] [LOG]    Connecting socket for: MMM-Face-Reco-DNN
              0|auto-boo | [2020-09-01 21:17:47.483] [LOG]    Starting module helper: MMM-Face-Reco-DNN
              0|auto-boo | [2020-09-01 21:17:47.484] [LOG]    Connecting socket for: MMM-LICE
              0|auto-boo | [2020-09-01 21:17:47.484] [LOG]    Starting node_helper for: MMM-LICE
              0|auto-boo | [2020-09-01 21:17:47.485] [LOG]    Connecting socket for: updatenotification
              0|auto-boo | [2020-09-01 21:17:47.486] [LOG]    Connecting socket for: calendar
              0|auto-boo | [2020-09-01 21:17:47.487] [LOG]    Starting node helper for: calendar
              0|auto-boo | [2020-09-01 21:17:47.487] [LOG]    Sockets connected & modules started ...
              0|auto-boo | [2020-09-01 21:17:47.796] [LOG]    Launching application.
              0|auto-boo | [2020-09-01 21:17:50.368] [LOG]    Create new calendar fetcher for url: https://calendar.google.com/calendar/ical/travisherman1995%40gmail.com/private-222d1bb9ac61711dec1dc28423f424ce/basic.ics - Interval: 300000
              0|auto-boo | [2020-09-01 21:18:00.570] [INFO]   Calendar-Fetcher: Broadcasting 53 events.
              0|auto-boo | [2020-09-01 21:18:01.110] [LOG]    [MMM-Face-Reco-DNN] loading encodings + face detector...
              0|auto-boo | [2020-09-01 21:18:01.236] [LOG]    [MMM-Face-Reco-DNN] starting video stream...
              
              /home/pi/.pm2/logs/auto-boot-error.log last 100 lines:
              0|auto-boo | npm ERR! A complete log of this run can be found in:
              0|auto-boo | npm ERR!     /home/pi/.npm/_logs/2020-09-02T02_27_15_806Z-debug.log
              0|auto-boo |
              0|auto-boo | (electron:27790): Gtk-WARNING **: 21:27:17.104: cannot open display: :0
              0|auto-boo | npm ERR! code ELIFECYCLE
              0|auto-boo | npm ERR! errno 1
              0|auto-boo | npm ERR! magicmirror@2.12.0 start: `DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js`
              0|auto-boo | npm ERR! Exit status 1
              0|auto-boo | npm ERR!
              0|auto-boo | npm ERR! Failed at the magicmirror@2.12.0 start script.
              0|auto-boo | npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
              0|auto-boo |
              0|auto-boo | npm ERR! A complete log of this run can be found in:
              0|auto-boo | npm ERR!     /home/pi/.npm/_logs/2020-09-02T02_27_17_139Z-debug.log
              0|auto-boo |
              0|auto-boo | (electron:27820): Gtk-WARNING **: 21:27:18.414: cannot open display: :0
              0|auto-boo | npm ERR! code ELIFECYCLE
              0|auto-boo | npm ERR! errno 1
              0|auto-boo | npm ERR! magicmirror@2.12.0 start: `DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js`
              0|auto-boo | npm ERR! Exit status 1
              0|auto-boo | npm ERR!
              0|auto-boo | npm ERR! Failed at the magicmirror@2.12.0 start script.
              0|auto-boo | npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
              0|auto-boo |
              0|auto-boo | npm ERR! A complete log of this run can be found in:
              0|auto-boo | npm ERR!     /home/pi/.npm/_logs/2020-09-02T02_27_18_447Z-debug.log
              0|auto-boo |
              0|auto-boo | (electron:27850): Gtk-WARNING **: 21:27:19.684: cannot open display: :0
              0|auto-boo | npm ERR! code ELIFECYCLE
              0|auto-boo | npm ERR! errno 1
              0|auto-boo | npm ERR! magicmirror@2.12.0 start: `DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js`
              0|auto-boo | npm ERR! Exit status 1
              0|auto-boo | npm ERR!
              0|auto-boo | npm ERR! Failed at the magicmirror@2.12.0 start script.
              0|auto-boo | npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
              0|auto-boo |
              0|auto-boo | npm ERR! A complete log of this run can be found in:
              0|auto-boo | npm ERR!     /home/pi/.npm/_logs/2020-09-02T02_27_19_716Z-debug.log
              0|auto-boo |
              0|auto-boo | (electron:27880): Gtk-WARNING **: 21:27:20.934: cannot open display: :0
              0|auto-boo | npm ERR! code ELIFECYCLE
              0|auto-boo | npm ERR! errno 1
              0|auto-boo | npm ERR! magicmirror@2.12.0 start: `DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js`
              0|auto-boo | npm ERR! Exit status 1
              0|auto-boo | npm ERR!
              0|auto-boo | npm ERR! Failed at the magicmirror@2.12.0 start script.
              0|auto-boo | npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
              0|auto-boo |
              0|auto-boo | npm ERR! A complete log of this run can be found in:
              0|auto-boo | npm ERR!     /home/pi/.npm/_logs/2020-09-02T02_27_20_966Z-debug.log
              0|auto-boo |
              0|auto-boo | (electron:27910): Gtk-WARNING **: 21:27:22.177: cannot open display: :0
              0|auto-boo | npm ERR! code ELIFECYCLE
              0|auto-boo | npm ERR! errno 1
              0|auto-boo | npm ERR! magicmirror@2.12.0 start: `DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js`
              0|auto-boo | npm ERR! Exit status 1
              0|auto-boo | npm ERR!
              0|auto-boo | npm ERR! Failed at the magicmirror@2.12.0 start script.
              0|auto-boo | npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
              0|auto-boo |
              0|auto-boo | npm ERR! A complete log of this run can be found in:
              0|auto-boo | npm ERR!     /home/pi/.npm/_logs/2020-09-02T02_27_22_212Z-debug.log
              0|auto-boo |
              0|auto-boo | (electron:27940): Gtk-WARNING **: 21:27:23.424: cannot open display: :0
              0|auto-boo | npm ERR! code ELIFECYCLE
              0|auto-boo | npm ERR! errno 1
              0|auto-boo | npm ERR! magicmirror@2.12.0 start: `DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js`
              0|auto-boo | npm ERR! Exit status 1
              0|auto-boo | npm ERR!
              0|auto-boo | npm ERR! Failed at the magicmirror@2.12.0 start script.
              0|auto-boo | npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
              0|auto-boo |
              0|auto-boo | npm ERR! A complete log of this run can be found in:
              0|auto-boo | npm ERR!     /home/pi/.npm/_logs/2020-09-02T02_27_23_458Z-debug.log
              0|auto-boo |
              0|auto-boo | (electron:27970): Gtk-WARNING **: 21:27:24.674: cannot open display: :0
              0|auto-boo | npm ERR! code ELIFECYCLE
              0|auto-boo | npm ERR! errno 1
              0|auto-boo | npm ERR! magicmirror@2.12.0 start: `DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js`
              0|auto-boo | npm ERR! Exit status 1
              0|auto-boo | npm ERR!
              0|auto-boo | npm ERR! Failed at the magicmirror@2.12.0 start script.
              0|auto-boo | npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
              0|auto-boo |
              0|auto-boo | npm ERR! A complete log of this run can be found in:
              0|auto-boo | npm ERR!     /home/pi/.npm/_logs/2020-09-02T02_27_24_716Z-debug.log
              0|auto-boo |
              0|auto-boo | (electron:28000): Gtk-WARNING **: 21:27:26.034: cannot open display: :0
              0|auto-boo | npm ERR! code ELIFECYCLE
              0|auto-boo | npm ERR! errno 1
              0|auto-boo | npm ERR! magicmirror@2.12.0 start: `DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js`
              0|auto-boo | npm ERR! Exit status 1
              0|auto-boo | npm ERR!
              0|auto-boo | npm ERR! Failed at the magicmirror@2.12.0 start script.
              0|auto-boo | npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
              0|auto-boo |
              0|auto-boo | npm ERR! A complete log of this run can be found in:
              0|auto-boo | npm ERR!     /home/pi/.npm/_logs/2020-09-02T02_27_26_066Z-debug.log
              0|auto-boo |
              0|auto-boo | (electron:28030): Gtk-WARNING **: 21:27:27.344: cannot open display: :0
              
              S 1 Reply Last reply Reply Quote 0
              • S Offline
                sdetweil @richardhennessy
                last edited by

                @richardhennessy how is your pi connected to its display?

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                R 1 Reply Last reply Reply Quote 0
                • R Offline
                  richardhennessy @sdetweil
                  last edited by

                  @sdetweil via HDMI!

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

                    @richardhennessy weird

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    R 1 Reply Last reply Reply Quote 0
                    • R Offline
                      richardhennessy @sdetweil
                      last edited by

                      @sdetweil any suggestions?

                      1 Reply Last reply Reply Quote 0
                      • 1 / 1
                      • 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