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

    Posts

    Recent Best Controversial
    • RE: config,js beginner

      Hi @berne welcome on board!

      You are editing a Javascript file. You can basically use any decent text editor to edit this file, however some will mallform the file. Thats why I recogmend you something like Notepad++, or Visual Studio Code.

      You just have to add this somewhere in the modules array (An array is a list of things)

      For example:

      modules: [
          {
              module: "alert",
          },
          {
              module: "MMM-NowPlayingOnSpotify",
              position: "top_right",
              config: {
                  showCoverArt: false,
                  clientID: "",
                  clientSecret: "",
                  accessToken: "",
                  refreshToken: ""
              }
          },
          {
              module: "updatenotification",
              position: "top_bar"
          }
      ]
      

      Note, there must be a , character after the last } if this isn’t the last module. You can easily validate your changes by using a Javascript Linter.

      posted in Troubleshooting
      idoodlerI
      idoodler
    • RE: MMM-Loxone

      @bobbythemoh Thanks for informing me about that issue. I am currently working on something else, so I had to ditch my current installation.

      Schönen Abend noch;)

      posted in Utilities
      idoodlerI
      idoodler
    • RE: MMM-Loxone

      @bobbythemoh Yes, it looks like there is an issue with tvservice with one of the last Raspbian updates. I am looking into fixing this and also support more operating systems.

      posted in Utilities
      idoodlerI
      idoodler
    • RE: MMM-Loxone

      @bobbythemoh Oh, now everything makes sense. You have errors in your config.js.

      Boolean values must not be strings. Replace "true" and "false" with true and false. in Javascript "false" is equal to true, so you basically have presence enabled :winking_face:

      posted in Utilities
      idoodlerI
      idoodler
    • RE: MMM-Loxone

      @bobbythemoh I just double checked the code, if you disable the presence property there is no way to toggle the display by the Loxone Module. Do you see the log message Got lightMood change to: All off(778) after you disable the presence property.

      The Monitor is directly toggled after the log command.

      posted in Utilities
      idoodlerI
      idoodler
    • RE: MMM-Loxone

      @bobbythemoh I am currently unable to test it on a Raspberry Pi running Raspbian, because I am working on another project. Please try to execute /opt/vc/bin/tvservice -o, this will turn off the HTMI port, if this won’t work there may be an issue with the last update of Rasbian.

      I am currently anyway working on another method to toggle the HDMI port on different operating systems, so I may resolve this anyway.

      posted in Utilities
      idoodlerI
      idoodler
    • RE: MagicMirror with BalenaCloud

      I have great news. I finaly had time to work on this again. It is currently working with some caviets. I will push my changes as soon as I resolved them. This is a huge improvement for me, as it enables easy remote management of many MagicMirror installations:)

      posted in General Discussion
      idoodlerI
      idoodler
    • RE: MMM-Loxone

      @bobbythemoh Hi, may you please post the MagicMirrors log via pm2 log mm. Did you update your Raspberry pi?

      posted in Utilities
      idoodlerI
      idoodler
    • RE: Screen is a dark grey, not jet black

      Hi @pbrown17 ,

      can you please provide any picture of the Mirror? I am guessing that the grayish background you experience if due to the backlight of your monitor.
      You can also check the MagicMirror screen on another device.

      posted in General Discussion
      idoodlerI
      idoodler
    • MagicMirror with BalenaCloud

      Hi, I am planing to setup a few MagicMirror instances and I am looking for an easy way to remotely manage all the instances.

      I found BalenaCloud which looks very promising. I am new to Docker and I can’t wrap my head aroud on how to use the MagicMirror Docker image with BalenaCloud.

      Does anyone have any experience with this combination?

      Edit:
      There are still some issues, but I guess these can be fixed:)

      Edit 2:
      I finally was able to fix the randome restarts of the MagicMirror service. It should be stable now.
      However there is still an issue with the Browser service starting before the MagicMirror instance is finished, which results in an error screen that can be resolved with restarting the Browser service. This only occures on restarts tho…

      [card:idoodler/balena-MagicMirror]

      posted in General Discussion
      idoodlerI
      idoodler
    • RE: MMM-Loxone

      @meininger Ok, there may be some unexpected reconnects due to some changes in the authentication behavior on the Loxone side. But you shouldn’t see an issues because the Module will automatically reconnect to the Miniserver. I will update the module as soon as I can.

      Thanks for keeping me up-to-date 👍

      posted in Utilities
      idoodlerI
      idoodler
    • RE: MMM-Loxone

      @meininger I am asking this, because I noticed, that I have some occasional crashes in some other modules like Calendar and Weather which lead to a crashed MagicMirror, so the presence detection feature isn’t working.

      posted in Utilities
      idoodlerI
      idoodler
    • RE: MMM-Loxone

      @meininger Thanks for the update. May I ask you to show me your MagicMirrors log via pm2 log mm. Also, what Version do you have installed on your Loxone Miniserver?

      posted in Utilities
      idoodlerI
      idoodler
    • RE: Installing on a Pi Zero

      @andyc7687 I just noticed, is this a server only installation?

      posted in Troubleshooting
      idoodlerI
      idoodler
    • RE: syntax errors

      @egnos Please show us the full config.js file and mark it as Code by selecting the whole content of the file and click on the </> button.

      You can find a markdown tutorial here: https://commonmark.org/help/

      posted in Troubleshooting
      idoodlerI
      idoodler
    • RE: Module not showing up anymore!!

      @sam You have 23 errors, please show them to us.
      Just apply the error filter by clicking on the “Default levels” dropdown and deselect “Info”.

      posted in Bug Hunt
      idoodlerI
      idoodler
    • RE: Installing on a Pi Zero

      @andyc7687 I am able to try it today, I will contact you again.

      posted in Troubleshooting
      idoodlerI
      idoodler
    • RE: Installing on a Pi Zero

      @andyc7687 You need to do the following:

      • Clone your forked repository to your local machine
      • Adopt installers/raspberry.sh to include your Raspberry Pi Zero specific code
      • Commit and push your changes to Github
      • Test it on a Raspberry Pi Zero by execute bash -c "$(curl -sL https://raw.githubusercontent.com/ac2799/MagicMirror/master/installers/raspberry.sh)"
      • Create a Pull Request on the original MagicMirror repository

      Just contact me if you need any help, I can also test your changes, I have a spare Raspberry Pi Zero W on hand.

      posted in Troubleshooting
      idoodlerI
      idoodler
    • RE: Installing on a Pi Zero

      @andyc7687 Nice work. I think you should fork the MagicMirror repository, add merge your scripts with the installers/raspberry.sh script for direct implementation in the project.

      posted in Troubleshooting
      idoodlerI
      idoodler
    • RE: 2318 commits behind...

      @savona OK, you may have a corrupt git directory then. You may try to clone it again.

      posted in Troubleshooting
      idoodlerI
      idoodler
    • 1 / 1