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: Eeepc instead of raspberry

      @pnobrega as long as the module isn’t relying on rpi hardware (like the gpio) you are good to go.
      You can run MM2 on a regular windows machine to if you like. (There is a guide somewhere here on that)

      posted in Hardware
      brobergB
      broberg
    • RE: Currentweather,doesn't appear.

      @samson_82

      I tested this with my mirror (2.9.0)

      {
      	module: "currentweather",
      	position: "bottom_right",
      	config: {
      	location: "Alzey,Germany",
      	locationID: "2956710",
      	appid: "my api code",
      			}
      },
      

      And had no issues, Double check your API code and the Mirrors internet connection.

      posted in Troubleshooting
      brobergB
      broberg
    • RE: Currentweather,doesn't appear.

      The only thing that I see wrong is that the position doesn’t exist.

      These are the positions that you can choose from :

      top_bar, top_left, top_center, top_right, upper_third, middle_center, lower_third, bottom_left, bottom_center, bottom_right, bottom_bar, fullscreen_above, and fullscreen_below
      

      A reference for the positions (regions) can be found here :
      https://forum.magicmirror.builders/topic/286/regions/2

      posted in Troubleshooting
      brobergB
      broberg
    • RE: virtual touchscreen?

      Looks like a noise-maker with that rotating mirror :D
      But fun idea!

      posted in Hardware
      brobergB
      broberg
    • RE: MMM-flic

      @da4throux excellent! Maybe now I will have the motivation to setup the flic buttons I got two years ago 😁

      posted in System
      brobergB
      broberg
    • RE: Trying to change size of currentweather module driving me nuts...

      @magicmarc

      .currentweather .small {
         font-size: 10px;
      }
      .currentweather .medium {
         font-size: 15px;
      }
      .currentweather .large {
         font-size: 20px;
      }
      
      posted in Custom CSS
      brobergB
      broberg
    • RE: MMM Remote Control Error

      @Chynovsky you are missing commas after

      module: 'MMM-Remote-Control'
      And
      position: 'bottom_left'

      It should be

      module: 'MMM-Remote-Control',
      And
      position: 'bottom_left',

      posted in General Discussion
      brobergB
      broberg
    • RE: My first two mirrors made with privacy film vs acrylic one

      @hedmik check with your local “Glasmästare” most of them can get hold of two way mirrors, Pilkington is readily available. Pilkington mirroview has a good enough balance for most scenarios.

      posted in Show your Mirror
      brobergB
      broberg
    • RE: MM using Arduino...

      @justjim1220 with a 16mhz clockspeed, limited amount of memory… I would say you can’t.

      You could probably write something similar if you just want some simple text displayed on a small tft.

      posted in Tutorials
      brobergB
      broberg
    • RE: Change a font issue

      @artomka

      Try (removing the font weight from the font face)

      
      @font-face {
        font-family: FivoSans;
        font-style: normal;
        src:
          local("Fivo"),
          url("FivoSans-Medium.woff2") format("woff2");
      }
      
      .newsfeed .light {
        font-family: FivoSans;
      }
      

      (notice that i added the .light class after .newsfeed, this is because the .light class name adds the robot font and overwrites the more general font added to .newsfeed)
      With the font file still in the css folder (no subfolders ofc)., Next step is to try any other font type, like otf or ttf

      posted in Custom CSS
      brobergB
      broberg
    • 1 / 1