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: default calendar - multi line events - can't change to single

      @uk-Pedro

      Okey, first of, you need to alter your config since as it is now it won’t use your values.
      When the configuration is a pure number you don’t use " or ' you just enter the number.
      The same goes if the options are true or false.

      so your config should look like this :

      {
      		module: "calendar",
      		header: "Pedro",
      		position: "top_left",
      		config: {
      			timeFormat: "absolute",
      			getRelative: 0,
      			dateFormat: "Do MMM HH:mm",
      			maximumEntries: 10,
      			maxTitleLength: 20,
      			wrapEvents:false,
      			calendars: [
      				{
      		
      

      And I don’t get the row break as you do, do you have any other restrictions in your custom.css?

      posted in Troubleshooting
      brobergB
      broberg
    • RE: MMM-WeatherChart

      @Vauxdvihl the module name is case sensitive

      So .mmm-weathermodule is not the same as .MMM-WeatherModule

      And you might have to add !important after the height and width for it to override the height specified in the module.

      posted in Utilities
      brobergB
      broberg
    • RE: CSS Colur description

      @Vauxdvihl just use that hex code, I don’t see why you would bother trying to use a three digit hex when you can’t get that color with just the three digit hex.

      Slap a # on it and be done. (#8B4513)

      And the closest three digit code is easily done by removing the second character in the pair.

      So
      8B would be 8
      45 would be 4
      13 would be 1

      But this will result in #884411 instead of #8B4513.

      posted in Custom CSS
      brobergB
      broberg
    • RE: MMM-WeatherChart

      @Vauxdvihl

      Yes, But it will get fuzzy since the original image is only 828 × 272 pixels in size.

      increase by 25%

      .MMM-WeaterChart img{
      width: 1035px !important;
      height: 340px !important;
      }
      

      (To be clear, this go in to the custom.css file, not changing the module files)

      posted in Utilities
      brobergB
      broberg
    • RE: CSS Colur description

      here is a list over the different values you can use in any option with colors in css : https://www.w3schools.com/cssref/css_colors_legal.asp

      posted in Custom CSS
      brobergB
      broberg
    • RE: CSS Colur description

      @Vauxdvihl …

      It’s not special in any way, it’s just css and it can take whatever the css standard does.
      So yes, it will take all the different options I wrote in my answer.

      The three digit HEX (#FFF) is just a shorter (and less exact) version of the six digit HEX, like this

      #FFF is the same as #FFFFFF
      #330 is the same as #333300

      But you can’t get exact colors, you can only get a rough version of the colors, the 3 digit HEX is limited in that regard.

      posted in Custom CSS
      brobergB
      broberg
    • RE: CSS Colur description

      @Vauxdvihl

      go to : https://rgbcolorcode.com/

      There you can pick the color you want and then you use the codes to the right
      0_1574239422834_coolorgef.jpg

      instead of using the color names

      color: red
      

      You can use Hexadecimal

      color: #FF0000
      

      Or RGB

      color: rgb(255,0,0)
      

      or RGBA (if you want the text to be translucent)

      color: rgba(255,0,0,0.8)
      

      (you can use many more, but these will do you just fine)

      posted in Custom CSS
      brobergB
      broberg
    • RE: Benefit to the public: Advertising inside a "citizen bus"

      @rgbiernat

      MMM-Profileswitcher and then just add the ads with MMM-Easypix (multiple instances so you only show one picture per profile).

      posted in Troubleshooting
      brobergB
      broberg
    • RE: MMM-Buttons only working with the first button

      I’m not sure, but I think you have to define the longpress option for each button

      			{
      			    module: 'MMM-Buttons',
      			    config: {
      			        buttons: [
      			            {
      			                pin: 17,
      			                name: "Tom",
      			                shortPress: {
      			                    notification: "CURRENT_PROFILE",
      			                    payload: "Tom"
      			                },
                                              longPress: undefined
      			            },
      					{
      			                pin: 27,
      			                name: "Alice",
      			                shortPress: {
      			                    notification: "CURRENT_PROFILE",
      			                    payload: "Alice"
      			                },
                                             longPress: undefined
      			            },
      					{
      			                pin: 22,
      			                name: "default",
      			                shortPress: {
      			                    notification: "CURRENT_PROFILE",
      			                    payload: "default"
      			                },
                                             longPress: undefined
      			            },
      					{
      			                pin: 18,
      			                name: "Jimmy",
      			                shortPress: {
      			                    notification: "CURRENT_PROFILE",	
      		                    payload: "Jimmy"
      			                },
                                           longPress: undefined
      			            },
      					{
      			                pin: 15,
      		                        name: "Max",
      			                shortPress: {
      			                    notification: "CURRENT_PROFILE",
        		                           payload: "Max"
      			                },
                                           longPress: undefined
      			            }
      			        ]
      			    }
      },
      
      posted in Troubleshooting
      brobergB
      broberg
    • RE: NewsFeed only shows "Loading..."

      @jani-karna the rss adress doesn’t exist

      Valitettavasti etsimääsi sivua ei löytynyt
      
          Tarkasta, että kirjoitit osoitteen oikein. Kiinnitä huomiota isoihin ja pieniin kirjaimiin.
          Tarkasta myös, että käytät osoitteessa kauttaviivoja /, etkä kenoviivoja \.
          Osoitteessa ei myöskään voi käyttää välilyöntejä.
          Etsimäsi sivu on myös saatettu poistaa, siirtää tai nimetä uudelleen.
      
      
      posted in Troubleshooting
      brobergB
      broberg
    • 1 / 1