Hi,
maybe this module helps MMM-ModuleToggle.
AxLED
Hi,
maybe this module helps MMM-ModuleToggle.
AxLED
The link has to look like:
http://MAGIC_MIRROR_IP:PORT/remote?action=HIDE&module=module_7_newsfeed
You have to use the right module name, in my case it is “module_7_newsfeed”, you can find this out by opening your MM in your firefox browser and use F12 Button and check the HTML source, what the name of your newsfeed module is.
Hope this helps.
AxLED
@mirror-master
There are other modules they do something similar than MMM-Carousel.
I use MMM-Pages this can be controlled by Hyperlinks via MMM-Remote-Control.
Example:
http://IPofMM:Port/remote?action=NOTIFICATION¬ification=PAGE_INCREMENT
AxLED
@Kaviish
It looks that there is a comma to much.
Try
longitude: 72.8777
instead of
longitude: 72.8777,
AxLED
@bream
Hi,
what are you trying to do with your buttons?
Here are some sample links for MMM-Remote-Control:
Change Pages (to use with MMM-Pages):
http://MAGIC_MIRROR_IP:PORT/remote?action=NOTIFICATION& notification=PAGE_DECREMENT
http://MAGIC_MIRROR_IP:PORT/remote?action=NOTIFICATION& notification=PAGE_INCREMENT
Some MM Basic Operations:
http://MAGIC_MIRROR_IP:PORT/remote?action=REBOOT
http://MAGIC_MIRROR_IP:PORT/remote?action=SHUTDOWN
Some Display Operations:
http://MAGIC_MIRROR_IP:PORT80/remote?action=MONITORON
http://MAGIC_MIRROR_IP:PORT/remote?action=MONITOROFF
Hope that helps.
AxLED
@Gooral
I had a similar issue and found out, that MMM-PIR-Sensor and MMM-Remote-Control uses different commands for sleep/wakeup of monitor.
MMM-Pir-Sensor:
vcgencmd display_power 0
vcgencmd display_power 1
MMM-Remote-Control:
tvservice -p
tvservice -o
In my case i was not able to wake up the screen by PIR when i send him to sleep by MMM-Remote-Control and the way back.
Maybe this information helps.
AxLED
@Subintro
If you install the MMM-Remote-Control module you are able to simulate notifications. The link for doing that has to look like: http://IPofYourMM:8080/remote?action=NOTIFICATION& notification=CALENDAR_EVENTS
I would also put a console.log before your
this.show();
in your code:
if (notification === 'CALENDAR_EVENTS') {
console.log("Calenderevent received.");
this.show();
this.updateDom();
}
AxLED
Hi to all,
i am trying to extend my MM for a second purpose -> Retropie.
Therefore i need a script or bash or any way to do the following:
Does anybody has hints for me to do that. For the beginning i would be also ok to run a script manual by entering the commands in terminal.
Thanks in advance.
AxLED
@Pakmann
2 ideas:
AxLED
Hi,
do you have some logs.
Go into terminal of your MM (RPI) an type pm2 logs and post it here.
AxLED
Hi to all MM Builders,
i made an update to my module MMM-Navigate.
1.2 Changelog:
Happy navigation.
AxLED
Hi to all,
i found a solution.

I use font awesome (which comes with mm anyway) an the following css:
.fa-lock1:after {
content: "\f023";
}
AxLED
i think there is an bug in the latest version of MMM-pages, see Issues.
I have the same behavior you described after updating MMM-pages today.
I restored the folder MMM-pages from my backup to an older version and now it is working again.
AxLED
@glitchgod
I had the same problem, here is the solution which worked for me.
Change into the modules directory
cd MagicMirror/modules/MMM-Buttons
Rebuild module for the correct elecron version
npm rebuild --runtime=electron --target=$(../../node_modules/electron/cli.js --version) --disturl=https://atom.io/download/atom-shell --build-from-source
AxLED
@Thomas2990
Have you tried another calendar, maybe something is wrong in the format of your .ics calendar?
The link in you error Screenshot contains one / (slash) to much.
AxLed
@Hein-Jan
1st idea:
What happens, if you start your MM in Debug mode (npm start dev) and set the reboot time (for testing purposes) within the next five minutes and watch the logs.
2nd idea:
Does the reboot via URL (http://[IP of MM]:8080/remote?action=REBOOT, see also MMM-Remote-Control) work? If not, what informations are in the logs?
AxLED
@Justinvd0203
I had a similar problem with my LG Monitor and PIR-Sensor.
In my case i had the following behavior:
Details see post.
No worry using HDMI->VGA adapter: VGA can also deliver FullHD Resolution.
Maybe your problem could be solved with an adapter.
AxLED
@greda
If you dont need your changes in your compliment module, you can try following commands (in the folder you are trying to update via git pull)
git reset --hard
git pull origin master
Do some post installations (if required).
AxLED