@spwood100 That module can be found on Github and here in the Forum Post.
Read the statement by Michael Teeuw here.
Posts
-
RE: Mirror Screencast
-
RE: MagicMirror at Maker Faire Berlin
I am the most hands… just kidding, the leftmost guy. :D
-
RE: MagicMirror at Maker Faire Berlin
Day 1 is almost finished, you can still stop by tomorrow:

75% of the presenters at the Maker Faire. -
RE: [Remote-Control] Shutdown, Configure and Update your MagicMirror
@pepemujica Currently not possible. How would you identify them? Do they have different headers? Or by region/position?
-
RE: [Remote-Control] Shutdown, Configure and Update your MagicMirror
Sorry for my long absence. I am currently in the last weeks of writing my master thesis. Therefore unfortunately not much will be happening until second or third week of May.
Big thanks to @strawberry-3-141 and @yawns to help everyone out so much. I finally made a release with the outstanding fixes:
[1.1.3] - 2017-04-23
Added
- Portuguese translation
- Indonesian translation
- Support for iOS Icon and Webapp
Changed
- Installation no longer needs a temporary file
Fixed
- Icon paths adapted to changes in Magic Mirror² 2.1.0
Hopefully I got everyone covered in my answers:
@PatrickGlatz Have you figured it out yet? I don’t think there is any special configuration needed, just need to find the right menu.
@kurt Thanks! Hopefully I will come around to improve the config interface at some point, as there are still some known bugs and problems, but I am glad it is already helping.
@AAPS You are right, I should probably add
npm installafter updating MM.@pepemujica What error do you get? Maybe it is something in your network settings?
-
RE: youtube - Embedded YouTube on Your MagicMirror
@wizz It should be about these lines in
remote.js. -
RE: MMM-FRITZ-Box-Callmonitor
@Photon2000 Can you try to execute this:
python -c "import fritzconnection as fc; fc.print_api(password='PWD')"and have a look at your model and OS version? Maybe they changed something in the API, or you have an older version? -
RE: Getting an error when attempting to update MMM-Remote-Control
@MobbareKurtZ You are on the
developbranch. In this case usegit pull origin develop(or run the installer again).Did you do
git diffbefore to see what the changes were? Strange that you did not change anything, but it still says so. Let me know if you encounter it again. -
RE: Getting an error when attempting to update MMM-Remote-Control
@MobbareKurtZ As @yawns said: You have changed something in the
remote.htmlfile. If you want to know what that was, usegit diffin the MMM-Remote-Control folder. You can use the methods describe above to reset or save the changes (you can replace thegit pull origin masterwith calling the updater/installer). -
RE: MMM-Remote-Control on LINUX box (NOT RPi)
@amanzimdwini Well how do you start it? With
pm2(then it ispm2 logs mm) or a simplenode serveronly? I am using the latter, and it would just output any possible errors on the console. What happens when you go tolocalhost:8080/remote.html? -
RE: MMM-Pnews
@lucallmon How about you complain on their site instead of here? Quote from https://newsapi.org/sources:
Can’t see the one you want? Send us an email request (support@newsapi.org) and we can probably add it.
-
RE: MMM-Facial-Recognition won't work
@angie2601 It expects the config file as an argument on the command line. Are you supposed to call the script manually? The module should call the python script with the appropriate parameters.
-
RE: [MMM-Buttons] Connect multiple buttons to send configurable notifications
@PointPubMedia Did you check out this section? There are some changes needed to make both work together smoothly.
-
RE: MMM-Remote-Control on LINUX box (NOT RPi)
@amanzimdwini Do you have any errors in the logs, or on the website? I develop on Ubuntu and it should definitely load, however some functions will not work (i.e. switching screen off and on, or reboot without
sudorights). -
RE: Activate Profiles (via MMM-ProfileSwitcher) using MMM-Remote-Control...
@Snille It is not an object, that you are supposed to send, see the documentation, just a simple string, i.e.
...?action=NOTIFICATION¬ification=CURRENT_PROFILE&payload=%22Snille%22. -
RE: PIR-Sensor - put your mirror to sleep if not used
@FlatPepsi I have made a helper function here. This basically works like a normal
setInterval, except it stops, when noone is present, and immediately exectues when a someone comes back. The helper functions for this are here, you can probably just copy and paste them. And then you finally need to check incoming notifications like this. -
RE: PIR-Sensor - put your mirror to sleep if not used
@FlatPepsi I have implemented this to a few of my own modules, and it is relatively simple to add, depending on which modules you want to adapt. However it will require some fiddling with the code of the modules.
-
RE: Javascript Timing Events
@mochman Well, good luck, and let us know if you find anything.
-
RE: MMM-doomsDay - The countdown module,
@Mykle1 My advent module? Even though @broberg hasn’t mentioned it, it seems he based his work on that module.
A feature suggestion from my side: It would feel more like an urgent thing closing in, if it could also show hours/minutes/seconds, too. Maybe use a formatting string for a
moment.jsduration? If I have some time, I might make a PR.