MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. broberg
    3. Best
    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: Acrylic mirror for a capacitive touch foil?

      @Fifin404 I can with high probablity tell you that he didn’t get it to work. Why? Because I havr used the dame type of touch foil he links and it Doesn’t work when placed beneath something that is metallic (which a mirror coat usually is).

      posted in Hardware
      brobergB
      broberg
    • RE: MMM-doomsDay - The countdown module,

      @Jopyth Yes, I stripped out that module for this one, kept the start function and removed the rest since It was a bit over my head at the moment :)

      Took me a lot longer than I’m willing to admit just to get the code to compare dates!
      Actually thought about the hour/minute countdown as well, but decided to keep it real basic.
      I figured you don’t really put that many hours in front of the mirror that it would be that important to see so much detail of the countdown. (And if you look the update interval is set to 5 hours just to keep it in the ballpark)

      posted in Utilities
      brobergB
      broberg
    • RE: Beginner question - is this configuration possible?

      @Shrike Since I don’t use a cam to my setup I can’t really tell.

      But I guess the easiest is going all Raspberry PI (stock power supply, raspberry camera and a pi 3)

      posted in General Discussion
      brobergB
      broberg
    • RE: Get back to desktop ?

      And pressing just alt will give you the top menu bar

      posted in Troubleshooting
      brobergB
      broberg
    • RE: Which Monitor?.

      Here are some previous threads that has been discussing your question

      https://forum.magicmirror.builders/post/52543

      https://forum.magicmirror.builders/post/26716

      https://forum.magicmirror.builders/post/52723

      https://forum.magicmirror.builders/post/53119

      https://forum.magicmirror.builders/post/52457

      https://forum.magicmirror.builders/post/11248

      posted in Hardware
      brobergB
      broberg
    • RE: MMM-doomsDay - The countdown module,

      @Mykle1 I think a higher updateInterval may be in order. the 5 Hours set now maybe is a bit to much,

      in the config you can add

      updateInterval: 1 * 3600000,

      To set it to update every hour instead!

      posted in Utilities
      brobergB
      broberg
    • RE: Anyone try dual loading mm and openframe?

      @soqueen should be easy to just use a picture module in the fullscren region and then use the pir sensor or a cam to hide the picture modul and display the regular modules.

      posted in General Discussion
      brobergB
      broberg
    • RE: How do I edit config, I see every new module starts whit going to config.js

      @KMH0 post your config, this will help to indentify the issues

      posted in Troubleshooting
      brobergB
      broberg
    • RE: MM-orrery - Show the planets and their current relation to the Sun

      @Mykle1

      According to the modules config options you can change each planets color with :
      planetColor (So mercuryColor for changing color on mercury)

      and you can change the size of the planets with

      planetRadius (samething here, if you want to change the neptunes size you change it to neptuneRadius)

      https://github.com/hoyski/MM-orrery#config

      posted in Education
      brobergB
      broberg
    • RE: MMM-newsfeedtouch - News so hot you wanna touch it

      @Ralf Okey, sorry for the long time away, I have tested your feeds on my own mirror,

      I can’t really find why you don’t get the description,

      try this code in your custom.css

      .infoCenter {
        position: fixed;
        top: 10px;
        z-index: 10;
      }
      

      That should make the description appear right on top of the headline.
      (I also added a higher z-index value in case something is being rendered above it, but it shouldn’t be)

      posted in Utilities
      brobergB
      broberg
    • RE: Recommended mirror specs

      @pauabaer yeah a couple of kg, but not overwhelmingly heavy :)

      posted in General Discussion
      brobergB
      broberg
    • RE: Help customizing compliments
      /* Magic Mirror Config Sample
       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       */
      
      var config = {
              port: 8080,
              ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
      
              language: 'en',
              timeFormat: 12,
              units: 'metric',
      
              modules: [
                      {
                              module: 'alert',
                      },              {
                              module: "updatenotification",
                              position: "top_bar"
                      },
                      {
                              module: 'clock',
                              position: 'top_left'
                      },
                                      {
                              module: 'compliments',
                              position: 'lower_third', 
       config: {
          compliments: {
              morning: [
                  'Good morning, handsome!',
                  'Enjoy your day!',
                  'How was your sleep?',
              ],
              afternoon: [
                  'Hello, beauty!',
                  'You look sexy!',
                  'Looking good today!',
              ],
              evening: [
                  'Wow, you look hot!',
                  'You look nice!',
                  'Hi, sexy!',
              ]
          }
      }
      
                      },
                      {
                              module: 'currentweather',
                              position: 'top_right',
                              config: {
                                      location: 'Toronto',
                                      locationID: 'xxxxxx',  //ID from http://www.openweathermap.org
                                      appid: 'xxxxxx'
                              }
                      },
                      {
                              module: 'weatherforecast',
                              position: 'top_right',
                              header: 'Weather Forecast',
                              config: {
                                      location: 'Toronto',
                                      locationID: 'xxxxxx',  //ID from http://www.openweathermap.org
                                      appid: 'xxxxxxx'
                              }
                      },
      
              ]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== 'undefined') {module.exports = config;}
      
      

      Just alter the compliments above between the two '
      add a , after each row when you add more compliments

      You can add any media you want, if you want a simple gif/jpg to display somewhere then MMM-SimpleLogo will do just that

      https://github.com/frdteknikelektro/MMM-SimpleLogo

      posted in Troubleshooting
      brobergB
      broberg
    • RE: MMM-DailyBibleVerse

      @bminer1 it’s missing a .

      .MMM-DailyBibleVerse {
      font-size: 12px;
      }
      posted in Education
      brobergB
      broberg
    • RE: MMM-doomsDay - The countdown module,

      Finally got around to adding the option to change the text displayed when the doomsDay has passed as @Snille suggested!

      posted in Utilities
      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: Total n00b and can't get this thing to work. Please help!

      @EttVenter I would suggest a total reformatting of the SD card, get the Jessie lite image and put that on your sd card.

      Then follow these instructions : https://github.com/MichMich/MagicMirror/wiki/Jessie-Lite-Installation-Guide

      posted in Troubleshooting
      brobergB
      broberg
    • RE: Creating a module to display daily horoscopes

      @YoungHomie the newsfeed module is basically a rss reader, find a rss stream and past it in ad the url and it will be displayed as the news are being displayed

      posted in Development
      brobergB
      broberg
    • RE: MMM-doomsDay - The countdown module,

      @pjkoeleman nope, probably a timezone issue on the Pi itself, does the clock work correctly? daylight saving time?

      Try changing the time from 24:00:00 to 23:59:00

      posted in Utilities
      brobergB
      broberg
    • RE: New windows, NOT full size

      @mortenbirkelund why not use an iframe? That way you could still have a lot of the other modules visible as well and you could put a timer on it so if you don’t close it it closes itself.

      posted in Troubleshooting
      brobergB
      broberg
    • 1
    • 2
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 7 / 11