MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. broberg
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    Offline
    • Profile
    • Following 1
    • Followers 5
    • Topics 12
    • Posts 792
    • Groups 3

    Posts

    Recent Best Controversial
    • RE: Current weather clock is stuck

      the time in the currentweather I believe is the time for sunrise at your location.

      posted in Troubleshooting
      brobergB
      broberg
    • 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.

      https://github.com/paviro/MMM-syslog

      https://github.com/Jopyth/MMM-Remote-Control

      posted in Troubleshooting
      brobergB
      broberg
    • 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.

      posted in General Discussion
      brobergB
      broberg
    • 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.

      posted in Troubleshooting
      brobergB
      broberg
    • RE: MMM-TouchPlayerBasic - Simple Webradio and mp3 Playlist player.

      @Benjoe1896

      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!

      posted in Entertainment
      brobergB
      broberg
    • 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.

      posted in Hardware
      brobergB
      broberg
    • RE: Touch screen over two way mirror

      @janthonyds IR frame is the easiest solution.

      posted in Hardware
      brobergB
      broberg
    • RE: Local Video Module

      @rguidice

      https://forum.magicmirror.builders/topic/2164/mmm-htmlvideo-basic-video-file-player

      Does not support all formats, but some basic ones.

      posted in Requests
      brobergB
      broberg
    • 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/2

      But here is the solution for the time and date :

      blue time :

      .clock .time {
      color: blue;
      }
      

      red date:

      .clock .date {
      color: red;
      }
      
      posted in Development
      brobergB
      broberg
    • 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.

      posted in Tutorials
      brobergB
      broberg
    • RE: Magic Mirror Sample Video

      @joela85 you could probably make one yourself with a desktop recording program.

      posted in General Discussion
      brobergB
      broberg
    • RE: MagicMirror Servermode on Synology DS

      @AnyKey any text editor will be able to read .js files.

      posted in Tutorials
      brobergB
      broberg
    • RE: How do you get the taskbar to show over the Magic Mirror?

      @PhilsterM9 don’t know
      These are the electron options.

      https://github.com/electron/electron/blob/master/docs/api/browser-window.md#new-browserwindowoptions

      posted in Troubleshooting
      brobergB
      broberg
    • 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

      posted in Troubleshooting
      brobergB
      broberg
    • 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.

      posted in Upcoming Features
      brobergB
      broberg
    • 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)

      posted in Troubleshooting
      brobergB
      broberg
    • RE: No free space on SD-card

      @zdenek sounds more like a defective sd-card if the Pi won’t start at all.

      posted in Troubleshooting
      brobergB
      broberg
    • 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

      posted in General Discussion
      brobergB
      broberg
    • 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).

      posted in General Discussion
      brobergB
      broberg
    • RE: How do you get the taskbar to show over the Magic Mirror?

      @Mykle1 I think he means the pixel desktop taskbar

      alt text

      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 }
      
      posted in Troubleshooting
      brobergB
      broberg
    • 1 / 1