• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

HELP -- MMM-calendarExt2 was not displayed

Scheduled Pinned Locked Moved Forum
22 Posts 4 Posters 4.3k Views 3 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    swvalenti Project Sponsor @SARCux
    last edited by Apr 16, 2022, 8:02 PM

    @SARCux not too sure now, have to call in the big guns to help good luck

    1 Reply Last reply Reply Quote 0
    • S Offline
      swvalenti Project Sponsor
      last edited by Apr 16, 2022, 8:03 PM

      you sure there is not another instance of magicmirror running somewhere?

      1 Reply Last reply Reply Quote 0
      • S Offline
        SARCux @swvalenti
        last edited by Apr 16, 2022, 8:03 PM

        @swvalenti

        Server started is this correct??

        Aktive Internetverbindungen (Nur Server)
        Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
        tcp        0      0 0.0.0.0:5900            0.0.0.0:*               LISTEN      517/vncserver-x11-c
        tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      519/sshd: /usr/sbin
        tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN      487/cupsd
        tcp6       0      0 ::1:631                 :::*                    LISTEN      487/cupsd
        tcp6       0      0 :::5900                 :::*                    LISTEN      517/vncserver-x11-c
        tcp6       0      0 :::22                   :::*                    LISTEN      519/sshd: /usr/sbin
        udp        0      0 0.0.0.0:68              0.0.0.0:*                           862/dhcpcd
        udp        0      0 0.0.0.0:631             0.0.0.0:*                           545/cups-browsed
        udp        0      0 0.0.0.0:5353            0.0.0.0:*                           368/avahi-daemon: r
        udp        0      0 0.0.0.0:51486           0.0.0.0:*                           368/avahi-daemon: r
        udp6       0      0 :::40941                :::*                                368/avahi-daemon: r
        udp6       0      0 :::5353                 :::*                                368/avahi-daemon: r
        
        B 1 Reply Last reply Apr 16, 2022, 8:16 PM Reply Quote 0
        • B Offline
          BKeyport Module Developer @SARCux
          last edited by Apr 16, 2022, 8:16 PM

          Let’s get all the info we can on this - strip your config of anything like passwords and private urls, and post it.

          The "E" in "Javascript" stands for "Easy"

          S 1 Reply Last reply Apr 16, 2022, 8:31 PM Reply Quote 0
          • S Offline
            SARCux @BKeyport
            last edited by Apr 16, 2022, 8:31 PM

            @BKeyport

            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: 8081,
                    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: "de",
                    locale: "de-DE",
                    logLevel: ["INFO", "LOG", "WARN", "ERROR"], // Add "DEBUG" for even more logging
                    timeFormat: 24,
                    units: "metric",
                    // serverOnly:  true/false/"local" ,
                    // local for armv6l processors, default
                    //   starts serveronly and then starts chrome browser
                    // false, default for all NON-armv6l devices
                    // true, force serveronly mode, because you want to.. no UI on this device
            
                    modules: [
                            {
                                    module: "alert",
                            },
                            {
                                    module: "updatenotification",
                                    position: "top_bar"
                            },
                            {
                                    module: "clock",
                                    position: "top_right"
                            },
                            {
                                    module: "MMM-DWD-WarnWeather",
                                    position: "top_right",
                                    config: {
                                            warnCellID: "803455020",
                                            changeColor: true,
                                            
                                                                            minutes: false,
                                            
                                                                            displayRegionName: true,
                                            
                                                                            displayInnerHeader: true,
                                            
                                                                            interval: 5 * 60 * 1000, // every 5 minutes
                                            
                                                                            loadingText: "Warnungen werden geladen...",
                                            
                                                                            noWarningText: "Keine Warnungen",
                                            
                                                                            severityThreshold: 1
                                            
                                                                            }
                                            
                                                            },
                                                            {
                                            
                                                                    module: "MMM-bsh-tides",
                                            
                                                                    position: "top_right",
                                            
                                                                    header: "*********",
                                            
                                                                    config: {
                                            
                                                                            filename: "*********", // file from https://tableau.bsh.de/views/Gezeitenvorausberechnung_V02/Download-Bereich
                                            
                                                                            todayLabel: "Heute",
                                            
                                                                            tomorrowLabel: "Morgen",
                                            
                                                                            highTide: "Hochwasser",
                                            
                                                                            lowTide: "Niedrigwasser",
                                            
                                                                            showIcons: false, // Hide or show arrow icons
                                            
                                                                            updateInterval: 60 * 60 * 1000, // 1 hour
                                            
                                                                            }
                                            
                                                            },
                                                            {
                                                                    module: "MMM-OpenmapWeather",
            
                                                                    position: "top_left",   // This can be any of the regions. Best results in left or right regions.
                                            
                                                                    header: "Current Weather", //Location is the default value if header is empty or not defined.
                                            
                                                                    config: {
                                            
                                                                            // See 'Configuration options' for more information.
                                            
                                                                            location: "*******",
                                            
                                                                            locationID: "***********", //Location ID from http://openweathermap.org/help/city_list.txt
                                            
                                                                            appid: "***************",  //openweathermap.org API key
                                            
                                                                            colorIcon: true
                                            
                                                                            }
                                            
                                                            },
                                            
                                                            {
                                            
                                                                    module: "MMM-OpenWeatherForecast",
                                            
                                                                    position: "top_left",
                                            
                                                                    header: "Wettervorhersage Hooksiel",
                                            
                                                                    language: "de",
                                            
                                                                    config: {
                                            
                                                                            apikey: "*****************", //only string here
                                            
                                                                            latitude: 53.640873,            //number works here
                                            
                                                                            longitude: 8.093848,          //so does a string
                                            
                                                                            units: "metric",
                                            
                                                                            iconset: "5c",
                                            
                                                                            colored: true,
                                            
                                                                            concise: true,
                                            
                                                                            requestDelay: "2000",
                                            
                                                                            showFeelsLikeTemp: true,
                                            
                                                                            showCurrentConditions: false,
                                            
                                                                            showSummary: false,
                                            
                                                                            showExtraCurrentConditions: true,
                                            extraCurrentConditions: {
                                                    highLowTemp: true,
                                                    precipitation: true,
                                                    sunrise: true,
                                                    sunset: true,
                                                    wind: true,
                                                    barometricPressure: true,
                                                    humidity: true,
                                                    dewPoint: false,
                                                    uvIndex: true,
                                                    visibility: true
                                                    },
                                            }
                            },
            
            
            
                            {
                                    module: "MMM-CalendarExt2",
                                    config: {
                                    calendars : [
                                    {
                                            name: "******",
                                            url: "***********",
                                            scanInterval: 7200000, //(already tried: 1000*60*60*2, 2*60*60*1000, )
                                    },
                                            ],
                                    views: [
                                    {
                                            name: "view1",
                                            mode: "week",
                                            calendars: ["******"],
                                            hideOverflow: false,
                                            position: "top_bar",
                                            slotCount: 3,
                                            filterPassedEvent: true,
                                            locale: "de-DE",
                                    },
                                    {
                                            name: "upcoming",
                                            mode: "upcoming",
                                            position: "top_center",
                                            maxItems: 5,
                                            maxDays: 7,
                                            locale: "de-DE",
                                            hideOverflow: false,
                                            filterPassedEvent: true,
                                    },
                                            ],
                                    scenes: [
                                    {
                                            name: "DEFAULT",
                                    },
                                            ],
                                            },
                            },
            
                    ]
            };
            
            /*************** DO NOT EDIT THE LINE BELOW ***************/
            if (typeof module !== "undefined") {module.exports = config;}
            S 1 Reply Last reply Apr 16, 2022, 9:13 PM Reply Quote 0
            • S Offline
              sdetweil @SARCux
              last edited by sdetweil Apr 16, 2022, 9:13 PM Apr 16, 2022, 9:13 PM

              @SARCux how did you install MagicMirror?

              did u do the manual install, git clone and npm install

              or use my script?

              looks like manual install

              u set auto start at boot. can’t start it again unless u shutdown the other instance

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              S 1 Reply Last reply Apr 16, 2022, 10:06 PM Reply Quote 0
              • S Offline
                SARCux @sdetweil
                last edited by Apr 16, 2022, 10:06 PM

                @sdetweil

                tomorrow i would like to install all new (sdcard)
                after that i install MM
                where can i find your script for install it?

                1 Reply Last reply Reply Quote 0
                • S Offline
                  swvalenti Project Sponsor
                  last edited by Apr 16, 2022, 10:23 PM

                  https://github.com/sdetweil/MagicMirror_scripts

                  S 1 Reply Last reply Apr 16, 2022, 11:37 PM Reply Quote 1
                  • S Offline
                    sdetweil @swvalenti
                    last edited by Apr 16, 2022, 11:37 PM

                    @swvalenti as referenced in the doc, under alternative installation methods

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    S 1 Reply Last reply Apr 19, 2022, 5:47 PM Reply Quote 0
                    • S Offline
                      SARCux @sdetweil
                      last edited by Apr 19, 2022, 5:47 PM

                      @sdetweil

                      Hi,
                      install all new with script.
                      MMM-CalendarExt2 don´t displayed.
                      Altenativ Standard Calendar runs

                      Other options??

                      S S 2 Replies Last reply Apr 19, 2022, 6:30 PM Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 2 / 3
                      2 / 3
                      • First post
                        16/22
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy