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

    Posts

    Recent Best Controversial
    • RE: The current installation is 2 commits behind on the master branch.

      If the pending update is for one of your modules it will show the module name. Just follow Anhalter42’s instructions:

      //open terminal
      cd ~/MagicMirror/modules
      cd MODULENAME
      git pull
      npm install //if required
      

      Otherwise it is the MagicMirror installation itself.

      //open terminal
      cd ~/MagicMirror
      git pull
      npm install
      
      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Anyone built a launcher?

      Why not simply create a github repository?

      posted in General Discussion
      yawnsY
      yawns
    • RE: MMM-Jnews

      @ob018 said in MMM-Jnews:

      I was wondering if you could add a way to “force” a specific language ?
      ( my mirror language is English and i would love to read the French news )

      mh, you could try to use this:

      {
      	module: 'MMM-Jnews',
      	config: {
      		lang: "fr",
      		apiKey: "YOUR API KEY", 
      		image : true,
      		rotateInterval: 25 * 1000 
      	}
      },
      
      posted in Education
      yawnsY
      yawns
    • RE: MMM-PIR-Sensor

      PIR does not work behind a mirror glass, the reflective part blocks the IR.
      If you want to mount it behind the mirror glass you should use a microwave sensor. Otherwise unmount the fresnel lens (the plastic dome mounted on top of the PIR sensor, drill a tiny hole (2-3mm) and let the PIR sensor “look” through the hole.

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Further module categories...

      @cowboysdude

      Could you name some additional categories? I would avoid adding sub-categories, because users would have to work their way down the “tree”.

      posted in General Discussion
      yawnsY
      yawns
    • RE: New module breaks magicmirror

      @tomamer
      Look at this line: destination: ‘Kingston, London'

      There is a wrong apostrophe before Kingston

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Magic Mirror minus the mirror

      Some explanation from @strawberry-3-141

      'false' is a string and a string always represents the boolean true, so 'test', 'true' and 'false' all become true it doesn’t matter what the content of the string is.

      There are multiple types:

      • object {}
      • array []
      • number 2, -17 and 3.14
      • string "I am a string" and 'me too'
      • boolean true or false
      posted in General Discussion
      yawnsY
      yawns
    • RE: MMM-PC-Stats

      @justjim1220 said in MMM-PC-Stats:

      @mykle1

      Another question…

      How can be changed to show F°?

      Not really a big deal, mostly just curious… :upside-down_face:

      Just run sensors -f, at least this is working in debian, so I guess it should work in raspbian too

      Or, if you just want to convert Celcius to Fahrenheit, add some code to Mykles module like this temp = ((temp/5)*9)+32 ;)
      But then again, you could add a config option to toggle between Fahrenheit and Celsius and submit a pull request

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Download Area ?? Images for Newbie User for download??

      What do you mean? A clone image of a running MagicMirror setup (including the whole raspberry pi operating system and such?
      That was discussed some time ago but rejected. Problem is this “working system” would either include personal api keys or the user would still have to add his own personal api keys. In addition there is no “common setup of modules and configurations” so you would have to provide a lot of different images.

      posted in General Discussion
      yawnsY
      yawns
    • RE: MMM-SleepWake not working

      The readme is wrong.

      {
      module: 'MMM-SleepWake',
      config:
         {
         delay:  15,      
         source: 'external',
         mode:  'pi'
         }
      },
      
      posted in Troubleshooting
      yawnsY
      yawns
    • 1 / 1