the time in the currentweather I believe is the time for sunrise at your location.
Read the statement by Michael Teeuw here.
Posts
-
RE: Current weather clock is stuck
-
RE: Display module on the basis of http request ?
Try these, I think the remote control does pretty much what you want already. or you could modify the syslog module to switch modules based on input.
-
RE: im seeking alot of help
I would suggest exploring the Windows route if you want “apps”.
And in that case choose a nuc pc or similar to power it all.About touch, the best way is probably an IR frame over the mirror.
It has been discussed a lot on this forum. -
RE: Screen's Brightness Pisses Me Off
Backlight is an issue with almost all LCD screens, this can be remedied by either a mirror with less light transmission (this will effectively dampen all light, even the parts you want to show.) or switch the monitor to a better one with a higher contrast, LED is usually better than CCFL when it comes to bleed through of the backlight. If you have a lot of money OLED is the shizzle, but it’s almost impossible to find in monitor sizes.
-
RE: MMM-TouchPlayerBasic - Simple Webradio and mp3 Playlist player.
It uses alsamixer command lines in the node helper file, your system probably doesn’t have alsa installed then.
Either install that or check what your linux distribution uses for sound management and change the node helper file accordingly! -
RE: Touch screen over two way mirror
@janthonyds the ir frame goes above the mirror-glass (i.e the ir diodes are mounted in the frame around the mirror).
Google IR-frame, or IR touch and similar and you will get lot’s of results and information. -
RE: Touch screen over two way mirror
@janthonyds IR frame is the easiest solution.
-
RE: Local Video Module
https://forum.magicmirror.builders/topic/2164/mmm-htmlvideo-basic-video-file-player
Does not support all formats, but some basic ones.
-
RE: Change the color of the font of various modules.
It’s been covered many times on this forum, Here is one thread for an example :
https://forum.magicmirror.builders/topic/2447/css-basics/2But here is the solution for the time and date :
blue time :
.clock .time { color: blue; }red date:
.clock .date { color: red; } -
RE: How to update.
@KX900 backup those files somewhere if you want to keep the changes you’ve made (you shouldn’t have made any changes in those files unless you really reaally had to) and then delete them and try to update again.
-
RE: Magic Mirror Sample Video
@joela85 you could probably make one yourself with a desktop recording program.
-
RE: MagicMirror Servermode on Synology DS
@AnyKey any text editor will be able to read .js files.
-
RE: Super nooby question- How to configure the downloaded modules and weather wont show up
@ghaal you copy the sample file ONCE after you have installed the mirror software.
But it looked like you where repeating the copy command (
cp = copy) before you started the mirror (npm start) and IF you do this each time, it doesn’t matter what you have saved in the config.js file since it will be overwritten each time you type in :cp config.js.sample config.js -
RE: (2.1.1) Options of Clock broadcast event
If you need re-occuring events isnt the calendar a better option? I do believe the calendar already has the option to send notifcations on calendar events.
-
RE: How do you get the taskbar to show over the Magic Mirror?
@PhilsterM9 did you try the electronoption in the config file?
electronOptions: { fullscreen: false, width: 1080, height: 1840 }This works on my mirror. (this is given that you are running the mirror in portrait mode and with a resolution of 1920x1080px)
-
RE: No free space on SD-card
@zdenek sounds more like a defective sd-card if the Pi won’t start at all.
-
RE: Touch overly VS. "Smart Glass"
@DongerZone said in Touch overly VS. “Smart Glass”:
I’m going to be working on this soon, after I get my modules reacting to my mouse. I think putting a transparent capacitive touch panel, in front of the mirror, might give you this effect. If you want to put the mirror on top though, I think you’re looking for a resistive touch panel.
This could actually work, it will build on the thickness and weight of the mirror but you could have a really thin frame instead of a IR-frame around it.
So it would be layers like :
Glass
Touch foil
Air gap
Mirror
Screen -
RE: Touch overly VS. "Smart Glass"
An IR-frame isn’t affected by the type of mirror (since it is placed in front of everything).
Touch foils (pcap) however can’t be used on glass with metallic coatings, which most of the mirrors have, because the metal distorts the readings of the foil sensors.
With that said I don’t know how the touch foil would react behind an acrylic mirror but my guess is that it most likely won’t work. (As most plastics are prone to get staticly charged and that could probably have a negative impact on the touch foil as well).
-
RE: How do you get the taskbar to show over the Magic Mirror?
@Mykle1 I think he means the pixel desktop taskbar

Don’t really know how to format it but electron can be run in window-mode and still maximized
maybe this will work :
electronOptions: { fullscreen: false, width: 1080, height: 1840 }