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

    Posts

    Recent Best Controversial
    • RE: MMM-SunRiseSet

      i can’t to seem to get some images to show, i just get surise/sunset and time of day,if i select static i get the diagram but nothing with world or map

      {
      	disabled: false,
      	module: "MMM-SunRiseSet",
      	position: "top_left",
      	config: {
      		lat: "-44.57",      // Your latitude (for the data)
      		lng: "168.50",     // Your longitude (for the data)
      		image: "world",          // "world" (animation), "map" (animation), "static" (graph)
      		imageOnly: "no",       // no = all data, yes = only animated world or map
      		dayOrNight: "day",   // "night" approaching, "day" approaching (imageOnly: must be "yes", image: must be "world") 
      		useHeader: false,      // true if you want a header
      		header: "Header",      // useHeader must be true
      		maxWidth: "515px",
          }
      },
      

      0_1573627515134_2019-11-13-194448_1080x1920_scrot.png

      posted in Education
      M
      mrdenmark
    • RE: jumpy youtube playback

      @cowboysdude
      wasn’t asking anything of the sort,just whether anyone else had managed to get it playing smoothly, another pi i have runs movies on kodi no problem or when i open a youtube stream in vlc player,again its fine so the pi itself is up to it,just not when in a browser,

      posted in Troubleshooting
      M
      mrdenmark
    • RE: MMM-CalendarExt2

      @Sean
      thanks for that,
      i changed a few things in the screenshot below and another thing i can’t figure how to change is the current and upcoming views
      the first calender-dishwasher duty- only ever shows one name per day but it seems to have several slots reeserved for it, i tried changing maxslots and maxheight but it resulted in a +1 showing for the entry,its also a larger block size in height than the ones in the upcoming view below it,how can i reduce the size of both the slot and the black area below it?
      0_1573550715844_2019-11-12-221628_1080x1920_scrot.png
      here’s my config for the views-

       views: [
        {
          name: "Dishwasher Duty",
          mode: "current",
          slotTitle: "Dishwasher Duty",
          position: "top_left",
          maxitems: 1,
          hideOveflow: true,
          useEventTimeRelative: false,
          calendars: ["Dishwasher Duty"],
        },
      {
          name: "Todays Events",
          mode: "current",
          slotTitle: "Todays Events",
          position: "top_left",
          useEventTimeRelative: false,
          maxitems: 500,
          calendars: ["family", "Rubbish Collection", "Public Holiday"],
        },
      {
          name: "Upcoming Events",
          mode: "upcoming",
          slotTitle: "Upcoming Events",
          position: "top_left",
          maxitems: 500,
          useEventTimeRelative: false,
          calendars: ["family", "Rubbish Collection", "Public Holiday"],
        },
        {
          name: "My family affairs",
          mode: "week",
          position: "bottom_bar",
          maxitems: 500,
          calendars: ["family", "Rubbish Collection", "Public Holiday"],
        },
          ],
      
      posted in Utilities
      M
      mrdenmark
    • RE: MMM-DumpsterDay

      @mrdenmark apologies foe formatting above!

      posted in Utilities
      M
      mrdenmark
    • RE: MMM-DumpsterDay

      if i use this config all bins show-

      {
      	module:"MMM-DumpsterDay",
      	position:"top_left",
      	config: {
      		refreshInterval: 18000000, // Default: 18000000 = 5 hours
      		pulse: false, 			   // Default: true - Makes the module pulsating
      
      		enableBasic: true, 				// Enable basic trashcan 
      		basicStartDate: "12.11.2019", 	// The first dumpster day (Always use 2 digit dates (01 instead of 1))
      		basicDateDiff_2: 7,			// Trashday reoccurance - Default: 14 (every 14 days)
      		basicNotifyDayBefore: true,		//Default: true - If you want the notification to appear also the day before the dumpster day
      		
      		enablePlastic: true,			// Same values as basic but for Plastic
      		plasticStartDate: "12.11.2019", 
      		plasticDateDiff_2: 14,
      		plasticNotifyDayBefore: true,	
      
      		enableLandscape: true,			// Same values as basic but for Landscape
      		landscapeStartDate: "12.11.2019",
      		landscapeDateDiff_2: 14,		
      		landscapeNotifyDayBefore: true,
      		}		
      		},
      

      if i use this then 2 bins show-

      {
      	module:"MMM-DumpsterDay",
      	position:"top_left",
      	config: {
      		refreshInterval: 18000000, // Default: 18000000 = 5 hours
      		pulse: false, 			   // Default: true - Makes the module pulsating
      
      		enableBasic: true, 				// Enable basic trashcan 
      		basicStartDate: "12.11.2019", 	// The first dumpster day (Always use 2 digit dates (01 instead of 1))
      		basicDateDiff_2: 7,			// Trashday reoccurance - Default: 14 (every 14 days)
      		basicNotifyDayBefore: true,		//Default: true - If you want the notification to appear also the day before the dumpster day
      		
      		enablePlastic: false,			// Same values as basic but for Plastic
      		plasticStartDate: "12.11.2019", 
      		plasticDateDiff_2: 14,
      		plasticNotifyDayBefore: true,	
      
      		enableLandscape: true,			// Same values as basic but for Landscape
      		landscapeStartDate: "12.11.2019",
      		landscapeDateDiff_2: 14,		
      		landscapeNotifyDayBefore: true,
      		}		
      		},
      
      

      but if i change it to either of these then only the basic shows up -

      enablePlastic: true,			// Same values as basic but for Plastic
      		plasticStartDate: "18.11.2019",
      

      or

      enablePlastic: false,			// Same values as basic but for Plastic
      		plasticStartDate: "18.11.2019",code_text
      

      maybe i’m misunderstanding but it seems the second last one is the one i require.

      for reference my red get picked up every monday and the other 2 alternate every 2 weeks,again on monday

      posted in Utilities
      M
      mrdenmark
    • RE: MMM-DumpsterDay

      @BD0G
      and you leave enableplastic set to false?and it still shows up on the weeks it should?

      posted in Utilities
      M
      mrdenmark
    • RE: MMM-CalendarExt2

      i’m sure thge answer to this question will be in the wiki but i either can’t find it or dont understand it.
      i have 2 things i’;d like to change,
      in the current and upcoming views you can see the titles i’ve entered and i’d like to remove/change where it says upcoming/current

      in whe weeks view the events are cut short,how do i make them wrap or use more lines to show the full entry?
      thanks in advance0_1573542519234_2019-11-12-195357_1080x1920_scrot.png

      posted in Utilities
      M
      mrdenmark
    • RE: MMM-DumpsterDay

      @BD0G
      i thought i had it working but no,all the icons show up ok but i can’t get them showing on the correct days,either all or basic.
      what did you change on the date?both entries look the same to me,also,did you leave the entry at false?does it still show on the expected day?

      posted in Utilities
      M
      mrdenmark
    • RE: MMM-DumpsterDay

      @BD0G
      fantastic,thankyou,the helpfulness of people on tghis forum never ceases to surprise me!

      posted in Utilities
      M
      mrdenmark
    • RE: MMM-DumpsterDay

      @BD0G
      thanks for that,one last thing,is it possible change the colour of the basic bin?in my case i’d like red.

      posted in Utilities
      M
      mrdenmark
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 3 / 8