MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. flemmingss
    F
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 8
    • Best 1
    • Controversial 0
    • Groups 0

    flemmingss

    @flemmingss

    4
    Reputation
    181
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    flemmingss Unfollow Follow

    Best posts made by flemmingss

    • My DIY wall project: Built-in screens and a charging station for multiple devices

      Not a mirror, but MagicMirror2 running on a wall display

      How its made (and config):
      https://flemmingss.com/my-diy-wall-project-built-in-screens-and-a-charging-station-for-multiple-devices/

      posted in Show your Mirror
      F
      flemmingss

    Latest posts made by flemmingss

    • RE: MMM-CalendarExt2

      @mmrize Is there a plan for MMM-CalendarExt3 in the near future? 👽
      if so, when can it be expected?

      posted in Utilities
      F
      flemmingss
    • My DIY wall project: Built-in screens and a charging station for multiple devices

      Not a mirror, but MagicMirror2 running on a wall display

      How its made (and config):
      https://flemmingss.com/my-diy-wall-project-built-in-screens-and-a-charging-station-for-multiple-devices/

      posted in Show your Mirror
      F
      flemmingss
    • RE: MMM-CalendarExt2: Module not showing

      problem detected 😃
      turns out MMM-CalendarExt2 did not support webcal:// like MMM-CalendarExt. Så I replaced all webcall;// with https:// and now it works.

      posted in Troubleshooting
      F
      flemmingss
    • RE: MMM-CalendarExt2: Module not showing

      @Sean said in MMM-CalendarExt2: Module not showing:
      Jus t a black screen

      views: [
      {
      mode: “month”,
      calendars: [],
      },
      ],
      scenes: [
      {
      views: [],
      },
      ],

      /* Magic Mirror Config Sample
       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       *
       * For more information how you can configurate this file
       * See https://github.com/MichMich/MagicMirror#configuration
       *
       */
      
      var config = {
      	address: "localhost", // Address to listen on, can be:
      	                      // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
      	                      // - another specific IPv4/6 to listen on a specific interface
      	                      // - "", "0.0.0.0", "::" to listen on any interface
      	                      // Default, when address config is left out, is "localhost"
      	port: 8080,
      	ipWhitelist: [],                                       // Set [] to allow all IP addresses
      	                                                       // or add a specific IPv4 of 192.168.1.5 :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
      	                                                       // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
      
      	language: "nb",
      	timeFormat: 24,
      	units: "metric",
      
      	modules:
      	[
      		{
      			module: "alert",
      		},
      		{
      			module: "updatenotification",
      		},
      		
      		{
      			module: 'MMM-CalendarExt2',
      			config: {
      				views: [
      					{
      					  mode: "month",
      					  calendars: [
      				{
      						
      											name: "flemming_privat",
      						
      											url: "webcal://www.google.com/calendar/ical/flemmingss%40gmail.com/private-XXX/basic.ics",
      						
      										},
      						
      										{
      						
      											name: "flemming_jobb",
      						
      											url: "https://calendar.google.com/calendar/ical/XXX%40group.calendar.google.com/private-XXX/basic.ics",
      						
      										},
      						
      										{
      						
      											name: "flemming_facebook",
      						
      											url: "webcal://www.facebook.com/ical/u.php?uid=XXX&key=XXX",
      						
      										},					},
      				  ],
      				  scenes: [
      					{
      					  views: [],
      					},
      				  ],
      			},
      		},
      	]
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      
      posted in Troubleshooting
      F
      flemmingss
    • MMM-CalendarExt2: Module not showing

      I have used MMM-CalendarExt before and now I try to change to MMM-CalendarExt2, but I don’t manage to get it showing.
      This is my module config:

      	modules:
      	[
      		{
      			module: "alert",
      		},
      		{
      			module: "updatenotification",
      		},
      		{
      			module: 'MMM-CalendarExt2',
      			position: 'middle_center',
      			config: {
      			  calendars : [
      				{
      					name: "flemming_privat",
      					url: "webcal://www.google.com/calendar/ical/flemmingss%40gmail.com/private-XXX/basic.ics",
      				},
      				{
      					name: "flemming_jobb",
      					url: "https://calendar.google.com/calendar/ical/XXX%40group.calendar.google.com/private-XXX/basic.ics",
      				},
      				{
      					name: "flemming_facebook",
      					url: "webcal://www.facebook.com/ical/u.php?uid=XXX&key=XXX",
      				},
      			  ],
      			  views: [
      				{
      					mode: "month",
      				},
      			  ],
      			  scenes: [
      				{
      					name: "DEFAULT",
      				},
      			  ],
      			},
      		},
      	]
      

      And this is what I see:
      alt text

      Anyone spot a mistake? The url’s are the same as in the old module, and the config is exact as the readme describes as basic config

      posted in Troubleshooting
      F
      flemmingss
    • Trying to change colors - MMM-CalendarExt

      Hi
      I try ti change colors in MMM-CalendarExt, but nothing is chaining.
      I have also tried the styleName: “style12”,, but no style is changed ether

      					{
      						name: "flemming_facebook",
      						url: "webcal://www.facebook.com/ical/u.php?uid=XXX8&key=XXX!",
      						color: "#00FFFF",
      						profile: [''],
      					},
      

      0_1567673200127_Untitled.png

      How do I do this?

      posted in Troubleshooting
      F
      flemmingss
    • RE: MMM-CalendarExt - After reboot it takes up to 30min to show

      looks like this worked:
      https://github.com/eouia/MMM-CalendarExt/issues/54

      posted in Troubleshooting
      F
      flemmingss
    • MMM-CalendarExt - After reboot it takes up to 30min to show

      New user her with first setup.
      I have set up MMM-CalendarExt on a Pi3+, it works, but when MagicMirror has started it is not shown at all, but after some time, like 30 minutes after it just starts working.

      So each time I make a change I have to like wait this time to check the results. How do I fix this?

      /* Magic Mirror Config Sample
       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       *
       * For more information how you can configurate this file
       * See https://github.com/MichMich/MagicMirror#configuration
       *
       */
      
      var config = {
      	address: "localhost", // Address to listen on, can be:
      	                      // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
      	                      // - another specific IPv4/6 to listen on a specific interface
      	                      // - "", "0.0.0.0", "::" to listen on any interface
      	                      // Default, when address config is left out, is "localhost"
      	port: 8080,
      	ipWhitelist: [],                                       // Set [] to allow all IP addresses
      	                                                       // or add a specific IPv4 of 192.168.1.5 :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
      	                                                       // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
      
      	language: "en",
      	timeFormat: 24,
      	units: "metric",
      
      	modules:
      	[
      		{
      			module: "alert",
      		},
      		{
      			module: "updatenotification",
      			position: "top_bar"
      		},
      		{
      			module: "clock",
      			position: "top_left"
      		},
      		{
      			module: 'MMM-CalendarExt',
      			position: "top_left", //anywhere. It is not related to real position of view
      			config:
      			{ // Read below
      				system:
      				{
      					show: ['daily'],
      					redrawInterval: 60000,
      				},
      			//  	views:
      			//	{
      			//		weekly:
      			//		{
      			//			showWeeks: 4
      			//		},
      			//	},
      				// defaultCalendar: { ... },
      				calendars:
      				[
      					{
      						name: "flemming_privat",
      						url: "webcal://www.google.com/calendar/ical/flemmingxx%40gmail.com/private-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/basic.ics",
      					},
      					{
      						name: "flemming_jobb",
      						url: "webcal://www.google.com/calendar/ical/ical/flemmingxx%40gmail.com/private-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/basic.ics",
      					},
      					{
      						name: "flemming_facebook",
      						url: "webcal://www.facebook.com/ical/u.php?uid=000000000&key=xxxxxxxxxxxxx_xx",
      					},
      			  	],
      			},
      		},
      	]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      
      posted in Troubleshooting
      F
      flemmingss