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

    svencarree

    @svencarree

    0
    Reputation
    1
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    svencarree Unfollow Follow

    Latest posts made by svencarree

    • RE: Version 2.30.0 Calendar fix for clipping broadcast events

      @sdetweil I’ve tried the hot fix but now I’ve got a black screen… What am i doing wrong?

      posted in Troubleshooting
      S
      svencarree
    • Calendar error ext3 and ext3agenda

      Hello on this beautiful sunday,

      I’ve problems with de Calendar -> ext3 not showing any results. In the past it worked fine but after a fresh install I can’t get it to work. The normal calendar shows the Google agenda fine and this is my code without the correct ICS reference.

      /* Config Sample
       *
       * For more information on how you can configure this file
       * see https://docs.magicmirror.builders/configuration/introduction.html
       * and https://docs.magicmirror.builders/modules/configuration.html
       *
       * You can use environment variables using a `config.js.template` file instead of `config.js`
       * which will be converted to `config.js` while starting. For more information
       * see https://docs.magicmirror.builders/configuration/introduction.html#enviromnent-variables
       */
      let 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 or empty, is "localhost"
      	port: 8080,
      	basePath: "/",	// The URL path where MagicMirror² is hosted. If you are using a Reverse proxy
      									// you must set the sub path here. basePath must end with a /
      	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],	// 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"],
      
      	useHttps: false,			// Support HTTPS or not, default "false" will use HTTP
      	httpsPrivateKey: "",	// HTTPS private key path, only require when useHttps is true
      	httpsCertificate: "",	// HTTPS Certificate path, only require when useHttps is true
      
      	language: "nl",
      	locale: "nl-NL",   // this variable is provided as a consistent location
      			   // it is currently only used by 3rd party modules. no MagicMirror code uses this value
      			   // as we have no usage, we  have no constraints on what this field holds
      			   // see https://en.wikipedia.org/wiki/Locale_(computer_software) for the possibilities
      
      	logLevel: ["INFO", "LOG", "WARN", "ERROR"], // Add "DEBUG" for even more logging
      	timeFormat: 24,
      	units: "metric",
      modules: [
        {
          module: "alert",
        },
        {
          module: "updatenotification",
          position: "top_bar"
        },
        {
          module: "clock",
          position: "top_left"
        },
      {
      			module: "calendar",
      			header: "Kalender",
      			position: "top_left",
      			config: {
      				
      				broadcastPastEvents: true,
      				calendars: [
      					{
      						symbol: "calendar-check",
      						url: "https://calendar.google. ***",
      					name: "Familie", 
      					color: "Purple"
      					}
      				]
      			}
      		},
            
      		{
        module: "MMM-CalendarExt3",
        position: "bottom_bar",
        title: "Familie",
        config: {
          mode: "week",
          instanceId: "basicCalendar",
          locale: 'nl-NL',
          maxEventLines: 8,
          weekIndex: 0,
          firstDayOfWeek: 1,
          calendarSet: ['Familie Carree'],
         
        }
      },
        {
          module: "MMM-CalendarExt3Agenda",
          position: "top_right",
          header: "De Agenda",
          config: {
            instanceId: "basicCalendar",
            locale: "nl-NL",
            firstDayOfWeek: 1,
            startDayIndex: 0,
            endDayIndex: 7,
            calendarSet: ["Familie"],
            listenEventBroadcast: true,
            maxItems: 10,
            showDescription: true,
            showTime: true,
            defaultSymbol: "calendar-check"
          }
        }
      ]
      
      
      };
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") { module.exports = config; }
      
      posted in Troubleshooting
      S
      svencarree
    • RE: Default Calander - can't get it to work

      @sdetweil

      Woowww I knew it had to be some kind of PEBCAK! Thanks, it was so simple.

      Thanks for answering all the newbie questions.

      posted in Troubleshooting
      S
      svencarree
    • Default Calander - can't get it to work

      Hello

      As a relative newbie I’ve got almost everything to work accept the Calendars. I’ve tried the default en several other modules but it keeps saying " No data found." or something like that (It’s in Dutch at my MM)/

      If I copy and past my open Google Calendar URL in the chromium browser it appears, so I think i’ve got the right URL?!

      I’ve even ‘back scripted’ it to the original code and still nothing appears and de message keeps saying ‘No data Found’ .

      {
      module: "calendar",
      position: "top_left", // This can be any of the regions. Best results in left or right regions.
      config: {
      colored: false,
      coloredSymbolOnly: false,
      calendars: [
      	{
      		url: 'https://www.calendarlabs.com/templates/ical/US-Holidays.ics',
      		symbol: 'calendar',
      		auth: {
      		    user: 'username',
      		    pass: 'superstrongpassword',
      		    method: 'basic'
      		}
      	},
      ],
      

      }
      },`

      posted in Troubleshooting
      S
      svencarree
    • problem

      Re: Dutch Rainforecast graph (Buienradar)

      Beste Cirdan, hij blijft bij mij maar staan op “klaar met opstarten”, heb jij een idee?
      mvg Sven

      posted in Troubleshooting
      S
      svencarree
    • RE: Keep having same error

      Thanks for the time and patience! But I’m still not finding it but I’m a real newbie…

      @svencarree said in Keep having same error:

      20.11.2022 19:53.11.506] [ERROR] App threw an error during load
      [20.11.2022 19:53.11.509] [ERROR] Error: Cannot find module ‘request’
      Require stack:

      /home/svencarree/MagicMirror/modules/MMM-BMW-OW/node_helper.js
      /home/svencarree/MagicMirror/js/app.js
      /home/svencarree/MagicMirror/js/electron.js
      /home/svencarree/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js
      at Module._resolveFilename (node:internal/modules/cjs/loader:940:15)
      at n._resolveFilename (node:electron/js2c/browser_init:245:1105)
      at Module._resolveFilename (/home/svencarree/MagicMirror/node_modules/module-alias/index.js:49:29)
      at Module._load (node:internal/modules/cjs/loader:785:27)
      at c._load (node:electron/js2c/asar_bundle:5:13343)
      at Module.require (node:internal/modules/cjs/loader:1012:19)
      at require (node:internal/modules/cjs/helpers:102:18)
      at Object. (/home/svencarree/MagicMirror/modules/MMM-BMW-OW/node_helper.js:9:17)
      at Module._compile (node:internal/modules/cjs/loader:1118:14)
      at Module._extensions…js (node:internal/modules/cjs/loader:1173:10)
      [20.11.2022 19:53.11.512] [ERROR] Whoops! There was an uncaught exception…
      [20.11.2022 19:53.11.517] [ERROR] Error: Cannot find module ‘request’
      Require stack:
      /home/svencarree/MagicMirror/modules/MMM-BMW-OW/node_helper.js
      /home/svencarree/MagicMirror/js/app.js
      /home/svencarree/MagicMirror/js/electron.js
      /home/svencarree/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js
      at Module._resolveFilename (node:internal/modules/cjs/loader:940:15)
      at n._resolveFilename (node:electron/js2c/browser_init:245:1105)
      at Module._resolveFilename (/home/svencarree/MagicMirror/node_modules/module-alias/index.js:49:29)
      at Module._load (node:internal/modules/cjs/loader:785:27)
      at c._load (node:electron/js2c/asar_bundle:5:13343)
      at Module.require (node:internal/modules/cjs/loader:1012:19)
      at require (node:internal/modules/cjs/helpers:102:18)
      at Object. (/home/svencarree/MagicMirror/modules/MMM-BMW-OW/node_helper.js:9:17)
      at Module._compile (node:internal/modules/cjs/loader:1118:14)
      at Module._extensions…js (node:internal/modules/cjs/loader:1173:10) {
      code: ‘MODULE_NOT_FOUND’,
      requireStack: [
      ‘/home/svencarree/MagicMirror/modules/MMM-BMW-OW/node_helper.js’,
      ‘/home/svencarree/MagicMirror/js/app.js’,
      ‘/home/svencarree/MagicMirror/js/electron.js’,
      ‘/home/svencarree/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js’,
      undefin

      This looks for me as the report of the error. But i’m not seeing wich library I should install under step 4 with npm install…

      posted in Troubleshooting
      S
      svencarree
    • RE: Keep having same error

      Hahaha sorry for the inconvinience! In the folder *MMM0BMW-OW’ there is a ‘package.json’ file. But at step 2 and 4 I really don’t know wich library is missing.

      posted in Troubleshooting
      S
      svencarree
    • Keep having same error

      Can someone help this newbie with what I’m doing wrong:

      magicmirror@2.21.0 start
      DISPLAY=“${DISPLAY:=:0}” ./node_modules/.bin/electron js/electron.js

      [20.11.2022 19:53.11.052] [LOG] Starting MagicMirror: v2.21.0
      [20.11.2022 19:53.11.058] [LOG] Loading config …
      [20.11.2022 19:53.11.068] [LOG] Loading module helpers …
      [20.11.2022 19:53.11.077] [LOG] No helper found for module: alert.
      [20.11.2022 19:53.11.105] [LOG] Initializing new module helper …
      [20.11.2022 19:53.11.108] [LOG] Module helper loaded: updatenotification
      [20.11.2022 19:53.11.111] [LOG] No helper found for module: clock.
      [20.11.2022 19:53.11.492] [LOG] Initializing new module helper …
      [20.11.2022 19:53.11.494] [LOG] Module helper loaded: calendar
      [20.11.2022 19:53.11.498] [ERROR] WARNING! Could not load config file. Starting with default configuration. Error found: Error: Cannot find module ‘request’
      Require stack:

      • /home/svencarree/MagicMirror/modules/MMM-BMW-OW/node_helper.js
      • /home/svencarree/MagicMirror/js/app.js
      • /home/svencarree/MagicMirror/js/electron.js
      • /home/svencarree/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js

      [20.11.2022 19:53.11.499] [LOG] Loading module helpers …
      [20.11.2022 19:53.11.500] [LOG] No helper found for module: alert.
      [20.11.2022 19:53.11.501] [LOG] Initializing new module helper …
      [20.11.2022 19:53.11.502] [LOG] Module helper loaded: updatenotification
      [20.11.2022 19:53.11.502] [LOG] No helper found for module: clock.
      [20.11.2022 19:53.11.503] [LOG] Initializing new module helper …
      [20.11.2022 19:53.11.504] [LOG] Module helper loaded: calendar
      [20.11.2022 19:53.11.506] [ERROR] App threw an error during load
      [20.11.2022 19:53.11.509] [ERROR] Error: Cannot find module ‘request’
      Require stack:

      • /home/svencarree/MagicMirror/modules/MMM-BMW-OW/node_helper.js
      • /home/svencarree/MagicMirror/js/app.js
      • /home/svencarree/MagicMirror/js/electron.js
      • /home/svencarree/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js
      • at Module._resolveFilename (node:internal/modules/cjs/loader:940:15)
        at n._resolveFilename (node:electron/js2c/browser_init:245:1105)
        at Module._resolveFilename (/home/svencarree/MagicMirror/node_modules/module-alias/index.js:49:29)
        at Module._load (node:internal/modules/cjs/loader:785:27)
        at c._load (node:electron/js2c/asar_bundle:5:13343)
        at Module.require (node:internal/modules/cjs/loader:1012:19)
        at require (node:internal/modules/cjs/helpers:102:18)
        at Object. (/home/svencarree/MagicMirror/modules/MMM-BMW-OW/node_helper.js:9:17)
        at Module._compile (node:internal/modules/cjs/loader:1118:14)
        at Module._extensions…js (node:internal/modules/cjs/loader:1173:10)
        [20.11.2022 19:53.11.512] [ERROR] Whoops! There was an uncaught exception…
        [20.11.2022 19:53.11.517] [ERROR] Error: Cannot find module ‘request’
        Require stack:
      • /home/svencarree/MagicMirror/modules/MMM-BMW-OW/node_helper.js
      • /home/svencarree/MagicMirror/js/app.js
      • /home/svencarree/MagicMirror/js/electron.js
      • /home/svencarree/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js
      • at Module._resolveFilename (node:internal/modules/cjs/loader:940:15)
        at n._resolveFilename (node:electron/js2c/browser_init:245:1105)
        at Module._resolveFilename (/home/svencarree/MagicMirror/node_modules/module-alias/index.js:49:29)
        at Module._load (node:internal/modules/cjs/loader:785:27)
        at c._load (node:electron/js2c/asar_bundle:5:13343)
        at Module.require (node:internal/modules/cjs/loader:1012:19)
        at require (node:internal/modules/cjs/helpers:102:18)
        at Object. (/home/svencarree/MagicMirror/modules/MMM-BMW-OW/node_helper.js:9:17)
        at Module._compile (node:internal/modules/cjs/loader:1118:14)
        at Module._extensions…js (node:internal/modules/cjs/loader:1173:10) {
        code: ‘MODULE_NOT_FOUND’,
        requireStack: [
        ‘/home/svencarree/MagicMirror/modules/MMM-BMW-OW/node_helper.js’,
        ‘/home/svencarree/MagicMirror/js/app.js’,
        ‘/home/svencarree/MagicMirror/js/electron.js’,
        ‘/home/svencarree/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js’,
        undefined
        ]
        }
        [20.11.2022 19:53.11.520] [ERROR] MagicMirror² will not quit, but it might be a good idea to check why this happened. Maybe no internet connection?
        [20.11.2022 19:53.11.520] [ERROR] If you think this really is an issue, please open an issue on GitHub: https://github.com/MichMich/MagicMirror/issues
        [20.11.2022 19:53.11.933] [LOG] Launching application.
        MESA-LOADER: failed to retrieve device information
        MESA-LOADER: failed to retrieve device information
        MESA-LOADER: failed to retrieve device information
        MESA-LOADER: failed to open kms_swrast: /usr/lib/dri/kms_swrast_dri.so: kan gedeeld objectbestand niet openen: Toegang geweigerd (search paths /usr/lib/arm-linux-gnueabihf/dri:$${ORIGIN}/dri:/usr/lib/dri)
        failed to load driver: kms_swrast
        MESA-LOADER: failed to open swrast: /usr/lib/dri/swrast_dri.so: kan gedeeld objectbestand niet openen: Toegang geweigerd (search paths /usr/lib/arm-linux-gnueabihf/dri:$${ORIGIN}/dri:/usr/lib/dri)
        failed to load swrast driver
      posted in Troubleshooting
      S
      svencarree