@lolobyte This is not related to the Remote Control, is it? Please make a a post in the troubleshooting section possibly with the configurations of your netatmo and Fuel modules, maybe something is wrong in your config.js.
Read the statement by Michael Teeuw here.
Posts
-
RE: [Remote-Control] Shutdown, Configure and Update your MagicMirror
-
RE: [MMM-PIR-Sensor] Install failing
@Makradon Sensor PIN 22 for the PIR-Sensor module is this one:

Edit: Maybe I was confused by the diagram of the DHT22 module. It looked to me like the GPIO and WiringPi numbers are different.
-
Looking for beta testers for MMM-Remote-Control
I developed the Remote Control Module (Link to Showcase Thread), and am currently making some major changes, to allow editing the config.js in a UI.
Judging from the traffic of the repository, this module is now being used by more people than just me, so I would like to make sure to gather feedback and fix possible bugs before releasing changes to everyone.If you are using my module and are interested in helping me by testing the version on my
developbranch, I would greatly appreciate it. Note that this version also might not work as intended all the time and can contain bugs. If you are afraid of messing up yourconfig.jsyou should probably stay on themasterbranch. Even though backups should be created, these currently need to be restored manually.If you want to help, please change to the
developbranch (I assume you already installed it):cd ~/MagicMirror/modules/MMM-Remote-Control git fetch origin git checkout develop npm install # install new dependenciesI will post here when new changes are ready for testing, if you want to be updated about new changes, you can watch this thread.
Also I will try to keep my trello board up to date.Please post ideas, feedback and bugs concerning the
developbranch in this thread (or make comments on the trello board). -
RE: [WANTED] Maker Faire Berlin MagicMirror booth
@paviro Well the mirror is finished, but there is a reason why I called it “Magic Wardrobe” (see this prezi). The top half can be taken off though and carried around, so it might be possible.
-
RE: [Remote-Control] Shutdown, Configure and Update your MagicMirror
If someone still has issues with the IP whitelist, please check this thread. For the other issues, if someone has clean steps to reproduce them, please post here or on the github issues linked in that post.
-
RE: [Remote-Control] Versions not visible
@schlachtkreuzer6 How did you install the module? It sounds like you may have downloaded a zipped version? Or did you use the installer or
git clone https://github.com/Jopyth/MMM-Remote-Control.git? Edit: Also please do @yawns suggestion, if the folder does not exist, something went wrong with cloning/initializing the git repository. -
RE: skywriter - python to javascript
-
RE: MagicMirror at Maker Faire Berlin
I am the most hands… just kidding, the leftmost guy. :D
-
RE: [Remote-Control] Shutdown, Configure and Update your MagicMirror
@Snille I like the idea, will probably add this to my “want to do” features.
-
RE: [MMM-PIR-Sensor] Install failing
-
RE: Looking for beta testers for MMM-Remote-Control
@done Kind of, yes. I think I have not fixed all mentioned errors, but hopefully the major ones. Also @Mr-Meeseeks added some new functionality (sending alerts).
Feel free to
git pullthe current status and test again. :) It should no longer mess upconfig.jsfiles as much, but it still could be. It is usingconfig.js.backupXso make manual backup somewhere else. -
RE: [Remote-Control] Shutdown, Configure and Update your MagicMirror
@in_a_days Could you check if my changes on the
developbranch solve the problem? -
RE: [MMM-Buttons] Not recognizing button presses
@Mar Good thing you found this error. Very strange, that it did not complain on my Pi before.
-
RE: Send message to the Mirror
[Advertisement for my own module incoming]: We (ab)use the Trello module for this kind of note. My girlfriend and I use one dedicated list for MagicMirror notes, and if we put cards on it they show on the mirror. Downside is you need a Trello account, upside is, it is easy to edit from phone, PC, …
With some custom CSS styling it would look like a sticky note. :)
-
RE: skywriter - python to javascript
@kclemen Are you searching for the output in your browser console? The
console.log("...")command fromnode_helper.jsis shown on the console, howeverconsole.log("...")commands of your module will appear in your developer tools console in the browser (e.g. electron). -
RE: [MMM-Buttons] Connect multiple buttons to send configurable notifications
@Mar Well its not, as if it were documented anywhere in my readme. :( Should probably add this somewhere.
How long are you pressing the button? For a very short time? Note, that if the press is longer than 500ms it will not be registered as a (short) press (it is the
maxShortPressTimeand can be configured).If this is not the case, I am sorry, but I have no real idea how to fix it, without having the same situation on my Pi.
-
RE: [MMM-PIR-Sensor] Install failing
-
RE: Request template to create new MM module
@dz I suggest you start with copying the helloworld module. For example, if you are in the MagicMirror
modulesfolder you copy thedefault/helloworldfolder tomyawesomemodule(out of the default folder).Then, in that folder you rename
helloworld.jstomyawesomemodule.jsand change the name in line 10 in the new file also tomyawesomemodule. You will also need to do these renaming steps, to change your module to a different name, so it is best if you pick a great name for what you want to do before you publish the module.Now add your new module to the config:
{ module: "myawesomemodule", position: "upper_third", classes: "large thin", config: { text: "My awesome module says: 'Hello World MagicMirror2'!" } },I hope this gets you started. Will see if I can add some more info on the
node_helper.jsstuff, but you may be able to figure this out yourself, by looking at other modules.

