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

    Posts

    Recent Best Controversial
    • RE: MMM-PIR-Sensor tuning

      @KirAsh4 I agree with you, but it also depends on what we are debugging. I looked at the particular way @jc21 implemented it, and it seems all the debug information are shown in the process manager logs only.

      posted in Troubleshooting
      J
      Jopyth
    • RE: [Remote-Control] Shutdown, Configure and Update your MagicMirror

      @Mr.Meeseeks You mean like with a PIR sensor? Fiddling with CSS would be possible I think, I will look into that.

      @rvdgeer good idea I wanted something similar like this too.

      posted in System
      J
      Jopyth
    • RE: MMM-PIR-Sensor tuning

      @KirAsh4 actually it looks like most of the Debug log will appear on the server side.

      You can check this with ‘pm2 logs mm’. Add ‘–lines 100’ to show more off the logs (100) in this case.

      posted in Troubleshooting
      J
      Jopyth
    • RE: Switched to development branch, mirror stopped launching

      @Canterrain Please run npm install in your MagicMirror folder (again). It should install the missing dependency.

      posted in Troubleshooting
      J
      Jopyth
    • RE: MMM-FRITZ-Box-Callmonitor

      @ostfilinchen In this case what we can try is some do-it-yourself debugging, i.e. add a line above line 56 of your node_helper.js

      console.log(this.config.password); // should show your password as entered in config
      console.log(this.config.password !== ""); // should show true
      

      Also change line 197:

      console.log("Reading " + files.length + " files from python script" ); // should probably show Reading 5 files from python script
      

      This should add the corresponding output to your server output pm2 logs --lines 100 mm.

      posted in Troubleshooting
      J
      Jopyth
    • RE: MMM-FRITZ-Box-Callmonitor

      @ostfilinchen Damn. Because I saw this in your first post. :( This was my last hope.

      Edit: Can you post the output of git status one more time? Just to make sure everything is fine with your module.

      posted in Troubleshooting
      J
      Jopyth
    • RE: MMM-FRITZ-Box-Callmonitor

      @ostfilinchen Please check if your option is German passwort (does not work) or password (English).

      posted in Troubleshooting
      J
      Jopyth
    • RE: Get value from Input Box

      @shvncrvn Well then you might just do something like this (needs jquery) in your module, and catch the typing of the scanner.

      posted in Development
      J
      Jopyth
    • RE: SD Card Backup

      @KirAsh4 Thats how I think, too, except that you technically need git clone ... instead of git pull. :)

      posted in General Discussion
      J
      Jopyth
    • RE: MMM-FRITZ-Box-Callmonitor

      @ostfilinchen Please check your config again. Is your password empty (i.e. the empty string password: "")? That would not work, but otherwise it should. I did a clean install and this config works for me:

      {
      	module: 'MMM-FRITZ-Box-Callmonitor',
      	position: 'bottom_right',
      	header: "Recent calls",
      	config: {
      		username: "EXAMPLE_USER",
      		password: "EXAMPLE_PASSWORD",
      		showContactsStatus: true
      	}
      },
      

      Result:
      0_1475355100926_Screenshot from 2016-10-01 22:50:16.png
      If I type a wrong password, it shows an error:

      [...]
      config: {
      	username: "EXAMPLE_USER",
      	password: "WRONG_EXAMPLE_PASSWORD",
      	howContactsStatus: true
      }
      [...]
      

      0_1475355180491_Screenshot from 2016-10-01 22:52:25.png

      If you can not see either of these results, and you say your version is up-to-date, then I am little bit out of guesses. Maybe you can try complete removing the module, and downloading it again?

      posted in Troubleshooting
      J
      Jopyth
    • 1 / 1