Is there a config option to show/hide the “Random Fact” title if you just want the fact?
Alternatively, would positioning and colour customisation of the title be done in CSS?
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-Random Fact
-
RE: Send notice text to MM2.5
Hi,
I wanted to do this as well. I found the best solution for myself was to use the MMM-Wunderlist module.
(You need the Wunderlist app on your mobile device as well. )https://github.com/paviro/MMM-Wunderlist
It’s a ToDo list and you can get messages to show up on the mirror by adding them to a specific List.
This way you can have multiple messages showing up. And to get rid of the messages you can just tick that item off the list.
You can also share lists with other Wunderlist users so they can also add and tick of items.Note:
One thing I did find as well is that it did stop updating after so many hours of running. Never found out what caused this, there are some other threads on here regarding the same issue (the same with ToDoist module)
The way I got around that was to set up a schedule to restart the MagicMirror a few times a day.Hope this helps or that you find an alternative solution, would be interested if there was an alternative easier way.
Regards
-
RE: Mmm-Wunderlist can't show individual lists
Hi,
One way around this might be to put two modules in your config, as shown below. That way you can have a separate header for each.
Hope this works.{ module: 'MMM-Wunderlist', position: 'bottom_left',// This can be any of the regions. Best$ header: 'Att göra', // This is optional config: {// See 'Configuration options' for more information. accessToken: '******************', clientID: '****************', //example clientID lists: ['Att göra'], interval: 3500, ShowDeadline: true, fade: true, } }, { module: 'MMM-Wunderlist', position: 'bottom_left',// This can be any of the regions. Best$ header: 'Matinköp', // This is optional config: {// See 'Configuration options' for more information. accessToken: '******************', clientID: '****************', //example clientID lists: ['Matinköp'], interval: 3500, ShowDeadline: true, fade: true, } },
-
RE: Black screen after MM v2.4.0 update.
@bhepler Ye, I had a play around last week and managed to do just this. All back up and running now.
Thank you for the reply though.Regards,
Joel -
RE: Black screen after MM v2.4.0 update.
@bwente
I’m not currently using MMM-PIR-Sensor.
My problem was Enabling the Open GL driver. Using “dtoverlay=vc4-kms-v3d” or “dtoverlay=vc4-fkms-v3d” did not work. Remove the line and it was fine. (Temps seem reasonable 62deg)"Enable the Open GL driver to decrease Electron’s CPU usage.
The latest versions of electron use an extreme amount of CPU power when no Open GL driver is loaded. This will result in an overheating Raspberry Pi. To solve this issue, use the experimental desktop Open GL driver by adding the following line to /boot/config.txt:sudo nano /boot/config.txt
Add the following line:dtoverlay=vc4-kms-v3d
ℹ️ Activating the Open GL drive can also be accomplished by using the raspi-config tool by running sudo raspi-config. Go to the Advanced Options menu and select A7 GL Driver. Next, select the G1 GL (Full KMS) OpenGL desktop driver with full KMS. Note that this option will be selected in the menu even when the GL drive is not yet configured."Not sure what the issue is. But at least it works.
-
RE: Not really a mirror at all - but is really helpful
I really like what you’ve done here, and am looking to do something similar.
I’ve got a touchscreen monitor so firstly wondering if I can have them on different pages and swipe between them.I would also like this if I could have a slideshow playing and then when music played on my sonos speakers then that module would show instead of the slideshow, or over the top of?
Anyone have any ideas?
-
RE: Black screen after MM v2.4.0 update.
I just updated and this is shown at the end of the install.
MagicMirror installation successful! > magicmirror@2.4.1 install-fonts /home/pi/MagicMirror > cd fonts && npm install npm WARN postcss-html@0.12.0 requires a peer of postcss-less@>=1.1.0 but none was installed. npm WARN postcss-html@0.12.0 requires a peer of postcss-scss@>=1.0.0 but none was installed. npm WARN postcss-html@0.12.0 requires a peer of sugarss@>=1.0.0 but none was installed. npm WARN stylelint-config-standard@16.0.0 requires a peer of stylelint@^7.8.0 but none was installed. pi@raspberrypi:~/MagicMirror $
I applied
dtoverlay=vc4-kms-v3d
to the config.txt ( also tried with fkms)
Reboot and I get a black screen.
When I remove dtoverlay=vc4-kms-v3d then the mirror boots up.
Any suggestions? -
RE: Black screen after MM v2.4.0 update.
I can’t access my mirror remotely anymore. Will I need to format my sd card and try again?
-
RE: Black screen after MM v2.4.0 update.
Thanks for the reply, I will try that when I get home.
-
Black screen after MM v2.4.0 update.
Black screen after updates. Followed the commands below.
sudo nano /boot/config.txt
added this to the bottom and saved.
dtoverlay=vc4-kms-v3d
then…
nano ~/.config/lxsession/LXDE-pi/autostart
added this to the bottom and saved
@xrandr --output HDMI-1 --rotate right
Then the install…
cd MagicMirror
and
sudo git pull && npm install
successful install and rebooted to see a black screen.
Have I missed anything?