• 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.

MMM-network-signal not showing

Scheduled Pinned Locked Moved Troubleshooting
10 Posts 2 Posters 1.0k 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.
  • I Offline
    icmike52
    last edited by Aug 1, 2020, 8:51 PM

    Runnning MagicMirror v 2.12.0

    I’m missing something simple. Following the instructions…
    I’ve cloned the repo into /MagicMirror/modules directory
    npm install ping (From the MMM-network-signal directory. Not sure if it had to be this directory)
    npm i

    And am using this code in my config.js
    {
    module: “MMM-network-signal”,
    position: “bottom_left”,
    config: {
    }
    },

    Nothing shows! I’m not seeing anything meaningful in the log, unless it’s not seeing the helper. (npm ping I assume)

    0|mm | > magicmirror@2.12.0 start /home/pi/MagicMirror
    0|mm | > DISPLAY=“${DISPLAY:=:0}” ./node_modules/.bin/electron js/electron.js
    0|mm | [2020-08-01 16:33:47.745] [LOG]
    0|mm | Starting MagicMirror: v2.12.0
    0|mm | [2020-08-01 16:33:47.759] [LOG]
    0|mm | Loading config …
    0|mm | [2020-08-01 16:33:47.773] [LOG]
    0|mm | Loading module helpers …
    0|mm | [2020-08-01 16:33:47.777] [LOG] No helper found for module: alert.
    0|mm | [2020-08-01 16:33:47.893] [LOG]
    0|mm | Initializing new module helper …
    0|mm | [2020-08-01 16:33:47.894] [LOG] Module helper loaded: updatenotification
    0|mm | [2020-08-01 16:33:47.896] [LOG] No helper found for module: clock.
    0|mm | [2020-08-01 16:33:48.656] [LOG]
    0|mm | Initializing new module helper …
    0|mm | [2020-08-01 16:33:48.657] [LOG] Module helper loaded: calendar
    0|mm | [2020-08-01 16:33:48.661] [LOG] Initializing new module helper …
    0|mm | [2020-08-01 16:33:48.662] [LOG] Module helper loaded: MMM-MyScoreboard
    0|mm | [2020-08-01 16:33:48.663] [LOG]
    0|mm | No helper found for module: currentweather.
    0|mm | [2020-08-01 16:33:48.665] [LOG] No helper found for module: weatherforecast.
    0|mm | [2020-08-01 16:33:48.667] [LOG] No helper found for module: MMM-network-signal.
    0|mm | [2020-08-01 16:33:48.668] [LOG] All module helpers loaded.
    0|mm | [2020-08-01 16:33:48.883] [LOG]
    0|mm | Starting server on port 8080 …
    0|mm | [2020-08-01 16:33:48.894] [INFO]
    0|mm | You’re using a full whitelist configuration to allow for all IPs
    0|mm | [2020-08-01 16:33:48.908] [LOG]
    0|mm | Server started …
    0|mm | [2020-08-01 16:33:48.909] [LOG] Connecting socket for: updatenotification
    0|mm | [2020-08-01 16:33:48.911] [LOG] Connecting socket for: calendar
    0|mm | [2020-08-01 16:33:48.913] [LOG] Starting node helper for: calendar
    0|mm | [2020-08-01 16:33:48.914] [LOG] Connecting socket for: MMM-MyScoreboard
    0|mm | [2020-08-01 16:33:48.916] [LOG] Starting node_helper for module [MMM-MyScoreboard]
    0|mm | [2020-08-01 16:33:49.964] [LOG]
    0|mm | Sockets connected & modules started …
    0|mm | [2020-08-01 16:33:50.113] [LOG]
    0|mm | Launching application.
    0|mm | [2020-08-01 16:33:53.003] [LOG]
    0|mm | Create new calendar fetcher for url: https://calendar.google.com/calendar/ical/xxxxxxxxxxxxx/basic.ics - Interval: 300000
    0|mm | [2020-08-01 16:33:53.189] [INFO]
    0|mm | Checking git for module: MMM-MyScoreboard
    0|mm | [2020-08-01 16:33:54.796] [INFO]
    0|mm | Calendar-Fetcher: Broadcasting 26 events.
    0|mm | [2020-08-01 16:34:10.414] [LOG]

    Raspberry Pi 3
    MagicMirror 2.12.0

    Always learning

    S 1 Reply Last reply Aug 1, 2020, 9:02 PM Reply Quote 0
    • S Offline
      sdetweil @icmike52
      last edited by Aug 1, 2020, 9:02 PM

      @icmike52 said in MMM-network-signal not showing:

      I’ve cloned the repo into /MagicMirror/modules directory
      npm install ping (From the MMM-network-signal directory. Not sure if it had to be this directory)
      npm i

      so the instructions for https://github.com/PoOwAa/MMM-network-signal.git say

      Clone this repo into ~/MagicMirror/modules directory.
      
      Install dependencies npm i
      

      missing step between

      cd MMM-network-signal
      

      I installed using these steps and it displays lower right
      Screenshot at 2020-08-01 16-01-52.png

      Sam

      How to add modules

      learning how to use browser developers window for css changes

      1 Reply Last reply Reply Quote 0
      • I Offline
        icmike52
        last edited by Aug 1, 2020, 9:53 PM

        Thanks for the quick response. I did both commands “npm i” and “npm install ping” from the /home/pi/MagicMirror/modules/MMM-network-signal-master directory
        pi@raspberrypi:~/MagicMirror/modules/MMM-network-signal-master $ npm install
        added 3 packages from 20 contributors and audited 3 packages in 1.296s
        found 0 vulnerabilities

        Sorry, I’m still missing something simple. Still learning.

        Raspberry Pi 3
        MagicMirror 2.12.0

        Always learning

        S 1 Reply Last reply Aug 2, 2020, 2:54 PM Reply Quote 0
        • S Offline
          sdetweil @icmike52
          last edited by sdetweil Aug 2, 2020, 3:39 PM Aug 2, 2020, 2:54 PM

          @icmike52 and then restarted mm?

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          1 Reply Last reply Reply Quote 0
          • I Offline
            icmike52
            last edited by Aug 2, 2020, 4:26 PM

            Yes
            pm2 restart mm

            Raspberry Pi 3
            MagicMirror 2.12.0

            Always learning

            S 1 Reply Last reply Aug 2, 2020, 4:40 PM Reply Quote 0
            • S Offline
              sdetweil @icmike52
              last edited by sdetweil Aug 2, 2020, 5:12 PM Aug 2, 2020, 4:40 PM

              @icmike52 ok, on the mirror, open the developers window ctrl-shift-i, and select the elements tab, and navigate to the position where u configured module.
              bottom-left

              then locate module there and examine it’s dom content
              Screenshot_2020-08-02_12-11-12.png

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              1 Reply Last reply Reply Quote 0
              • I Offline
                icmike52
                last edited by Aug 2, 2020, 5:42 PM

                That is useful. Thanks, Sam.

                Load script: modules/MMM-network-signal//MMM-network-signal.js
                loader.js:191 GET http://0.0.0.0:8080/modules/MMM-network-signal//MMM-network-signal.js net::ERR_ABORTED 404 (Not Found)
                loader.js:185 Error on loading script: modules/MMM-network-signal//MMM-network-signal.js

                But makes no sense 404 Not Found. I have not edited the MMM-network-signal.js file . The only address i see the the MMM-network-signal.js file is 8.8.8.8 (Google DNS) which I can ping just fine. I’ve even changed the server: “192.168.0.1” and it made no difference.

                Raspberry Pi 3
                MagicMirror 2.12.0

                Always learning

                S 1 Reply Last reply Aug 2, 2020, 6:13 PM Reply Quote 0
                • S Offline
                  sdetweil @icmike52
                  last edited by Aug 2, 2020, 6:13 PM

                  @icmike52 so, filesystem in linux is case sensitive, so module: name,
                  and folder in MM/Modules and filename all have to be exactly the same

                  that is telling
                  0|mm | [2020-08-01 16:33:48.667] [LOG] No helper found for module: MMM-network-signal.

                  as there IS a node_helper for this module… SO, looks like the foldername is wrong…

                  can you do

                  cd ~/MagicMirror/modules
                  ls -laF

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  I 1 Reply Last reply Aug 2, 2020, 6:30 PM Reply Quote 0
                  • I Offline
                    icmike52 @sdetweil
                    last edited by Aug 2, 2020, 6:30 PM

                    pi@raspberrypi:~/MagicMirror/modules $ ls -laf
                    MMM-network-signal-master MMM-Tools …
                    MMM-BMW-OW default MMM-Remote-Control
                    MMM-MyScoreboard . MMM-History

                    I renamed the folder “MMM-network-signal-master” to “MMM-network-signal” and it is now working. So simple when you know what to look for. Thanks Sam! I learned something.

                    FYI I seem to remember I downloaded the folder https://github.com/PoOwAa/MMM-network-signal.git from https://github.com/PoOwAa/MMM-network-signal

                    When I unzipped it, the folder name was wrong.

                    Raspberry Pi 3
                    MagicMirror 2.12.0

                    Always learning

                    S 1 Reply Last reply Aug 2, 2020, 6:36 PM Reply Quote 0
                    • S Offline
                      sdetweil @icmike52
                      last edited by sdetweil Aug 2, 2020, 6:38 PM Aug 2, 2020, 6:36 PM

                      @icmike52 said in MMM-network-signal not showing:

                      FYI I seem to remember I downloaded the folder https://github.com/PoOwAa/MMM-network-signal.git from https://github.com/PoOwAa/MMM-network-signal

                      yes, u did the zip download process, instead of the git clone process

                      the zip download adds the repo branch name to the unzipped folder name
                      the git clone process does not

                      also, the zip process disables the git pull update process for modules… i recommend NEVER using the zip download process

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

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