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: jumpy youtube playback

      @mrdenmark The hardware isn’t really made for it (especially when using web playback, HTML5, flash etc.)
      what resolution are you watching the clips in?

      posted in Troubleshooting
      brobergB
      broberg
    • RE: is this view possible? (MMM-calenderEXT)

      @mrdenmark

      It is absolutly possible with css, copy the css from the MMM-CalendarExt.css file and paste it in your custom.css and start changing the appearence.

      posted in Custom CSS
      brobergB
      broberg
    • RE: Trying to modify dimensions of module MMM-RAIN-RADAR

      Have you any iframe css active that might override the height and width?

      You could try this in your custom.css :

      .MMM-RAIN-RADAR .iframe {width: 300px; height: 300px}
      
      posted in Development
      brobergB
      broberg
    • RE: [MMM-XiaomiVacuum] - Xiaomi Vacuum status info

      Supernice!

      A start button would be nice to, for touch users and maybe a notification option to start to (so it can be used with mmm-buttons and mmm-gestures and such modules!).

      posted in Utilities
      brobergB
      broberg
    • RE: Modify clock module

      In custom.css add

      
      .clock .date {color: red}
      
      
      posted in Troubleshooting
      brobergB
      broberg
    • RE: color MMM-newsfeed

      It’s because most text has other classes that overrides the “general” option that is color:

      mostly it is .bright and .dimmed that is used.

      so for an example, the title in the default newsfeed is set with the class .bright

      
      .newsfeed .bright {
      color: green;
      }
      
      

      (I don’t know if there is a module named MMM-newsfeed, The default newsfeed is just .newsfeed and not .MMM-newsfeed, but if you are using a module besides the default one disregard this and use the module name as as in your example)

      posted in Requests
      brobergB
      broberg
    • RE: MagicMirror won't start with newest build

      After update, did you run Npm install in the magicmirror folder?

      posted in Troubleshooting
      brobergB
      broberg
    • RE: Need help with design/dimensions?.

      Frameless mirrors/floating mirrors are hard to do when you have to hide a screen and possibly a pi/other hardware. (And you probably want polished edges for that to)

      If you are able to build the screen and pi in to the wall itself and then mount the mirror flush on the wall, that would be one way of doing it.

      But since your glass won’t cover the entire screen (being 1.1 inch to short) the best thing to do is to build a frame with a larger bezel around the mirror+screen.
      And in that case yes, cutting the glass down would be good (just to get closer to the screens image ratio).

      With a larger bezel you can hide the overflow and you won’t get a backlight-edge visible on your mirror (since all the visible mirror surface will have the screen behind it).

      You could probably find a ready made picture frame that is close to your measurements, and then just build a simple wooden box around the components that you can mount the frame to and in the same time get mounting to hang it on a wall.
      (something like this maybe : https://www.amazon.co.uk/14x10-PICTURE-PHOTO-FRAME-Black/dp/B00BTBGGFC)

      You don’t need any specialized tools to make a frame (a saw, a hammer, some tiny nails, wood glue and some wood.)

      posted in Hardware
      brobergB
      broberg
    • RE: MMM-Caltrain (SF bay area)

      @efritz09 No worries! It looks good! :D

      posted in Transport
      brobergB
      broberg
    • RE: MMM-Caltrain (SF bay area)

      @efritz09

      A link to the module we be nice, se the guidelines here :

      https://forum.magicmirror.builders/topic/1440/showcase-guidelines

      posted in Transport
      brobergB
      broberg
    • RE: 3.5inch Display

      @dgregory19

      Anything visually related can be changed with CSS (the custom.css file and not in the config file).

      You can either change font sizes or you could try scaling the entire page :

      in your custom.css file add :

      body {
         transform: scale(0.4);
         transform-origin: 0 0;
      }
      

      this will scale down the entire page to 40%

      But with your low resolution screen I would suggest to minimize the data displayed (maybe use a page/profile module to switch between displayed information). Smaller font size will do much, maybe even change the font to a more pixelated font for clearer display.

      posted in Hardware
      brobergB
      broberg
    • RE: MMM Compliments

      Looking at the code you only have morning start and end, and afternoon start and end.

      so eveningStartTime & eveningEndTime does nothing.

      So basically the time between afternoonEndTime and morningStartTime is considered evening.
      Anything put in anytime-compliments will be shown regardless of time.

      So if you really want to test it then remove the compliments from anytime and just run 2 morning, 2 afternoon and 2 evening compliments (alter the times you see it change)

      
                   {
                              module: "compliments",
                              position: "lower_third",
                              config: {
                                         updateInterval: 90000,
                                         morningStartTime: 14,
                                         morningEndTime: 15,
                                         afternoonStartTime: 15,
                                         afternoonEndTime: 16,
                                         compliments: {
                                         anytime: [
                                         "anytime",
                                         ],
                                         morning: [
                                         "morning1",
                                         "morning2",
                                         ],
                                         afternoon: [
                                         "afternoon1",
                                         "afternoon2",
                                         ],
                                         evening: [
                                         "evening1",
                                         "evening2",
                                         ]
                                   }
                             }
                      },
      
      posted in Troubleshooting
      brobergB
      broberg
    • RE: MMM Compliments

      @Kollen

      You don’t use the " marks around the numbers.

      so :

      updateInterval: 90000,
      morningStartTime: 3,
      morningEndTime: 12,
      afternoonStartTime: 16,
      afternoonEndTime: 20,
      eveningStartTime: 20,
      eveningEndTime: 23,
      
      posted in Troubleshooting
      brobergB
      broberg
    • RE: MMM-ImagesPhotos - Show images from a directory

      @chassain-0

      I don’t know if this works but

      	randomIndex: function(photos) {
      		if (photos.length === 1) {
      			return 0;
      		}
      
      		var generate = function() {
      			return Math.floor(Math.random() * photos.length);
      		};
      
      		var photoIndex = generate();
      		this.lastPhotoIndex = photoIndex;
      
      		return photoIndex;
      	},
      
      

      try to change return Math.floor(Math.random() * photos.length); to return Math.floor(photos.length);

      However it’s Just a guess

      posted in Utilities
      brobergB
      broberg
    • RE: Missing Club Logos in MMM-Soccer

      @tino

      Have you run the downloader that is mentioned in the modules readme?

      Logos
      
      As the v2 api doesn't provide logos anymore, I developed a club logo downloader. It supports the five major leagues as above named. To run the downloader you need to execute the following steps.
      
          Go to the module directory cd ~/MagicMirror/modules/MMM-soccer.
          Execute node scripts/downloader COUNTRYNAME.
          Run this command for all the leagues you want to display on the mirror.
          Don't forget to activate the display of the logos in the config.
      
      If there isn't every club logo, you can also place them manually in the public directory of the module, the logos need to be in svg format and the name of the file has to match the displayed name.
      
      posted in Troubleshooting
      brobergB
      broberg
    • RE: need help on weatherforecast module

      @bdream what 3rd party weather module? link please.

      posted in Troubleshooting
      brobergB
      broberg
    • RE: Is using windows foe touch mirror possible

      If you don’t want to use the MagicMirror2 then you can try to use Rainmeter which is a highly customizable visual desktop information program.

      https://www.rainmeter.net/
      https://i.redd.it/vwwc2dv9isiy.jpg

      posted in Hardware
      brobergB
      broberg
    • RE: Is using windows foe touch mirror possible

      @m7mdlover you can run MagicMirror2 on Windows

      https://forum.magicmirror.builders/topic/4089/complete-walkthrough-install-magicmirror-on-a-pc-windows-7-10

      posted in Hardware
      brobergB
      broberg
    • RE: Help with CSS to align Sonos Art Work

      @frogywill

      Ahh sorry, didn’t read carefully enough.

      try this then, should shift the text to the right and let the image pop up next to it

      .song {position: relative;}
      .song .name {position: absolute; left: 200px;}
      
      posted in Troubleshooting
      brobergB
      broberg
    • RE: Help with CSS to align Sonos Art Work

      @frogywill

      In the custom.css file add :

      .art img {padding-left: 10px}
      
      posted in Troubleshooting
      brobergB
      broberg
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 39
    • 40
    • 4 / 40