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.

    MMM- Carousel

    Scheduled Pinned Locked Moved Solved Troubleshooting
    4 Posts 2 Posters 28 Views 2 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.
    • M Offline
      Mati_93
      last edited by sdetweil

      Hi friends, liebe Grüße Freunde!
      The concept of Carousel is more complicated than MMM-pages where I succeeded. This unfortunately not working, ignoring my usb keyboard and I still see on the middle of screen " module M_Carousel …etc" ps I’m a Newbie

      let config = {
          address: "0.0.0.0",
          port: 8080,
          basePath: "/",
          ipWhitelist: [],
      
          useHttps: false,
          httpsPrivateKey: "",
          httpsCertificate: "",
      
          language: "en",
          locale: "en-US",
          logLevel: ["INFO", "LOG", "WARN", "ERROR"],
          timeFormat: 24,
          units: "metric",
      
          modules: [
         	{
       		module: "MMM-KeyBindings",
        		config: {
         			evdev: { enabled: false },
      			enableKeyboard: true,
        			keyBindings: [
            				{
              				key: "ArrowRight",
              				notification: "PAGE_INCREMENT"
            				},
            				{
              				key: "ArrowLeft",
              				notification: "PAGE_DECREMENT"
            				}
          			]
        		}
      	},
      	{
            		module: "MMM-Carousel",
            		position: "bottom_bar",
            		config: {
              		transitionInterval: 10000,
              		ignoreModules: ["clock", "alert"],
              		mode: "slides",
              		showPageIndicators: true,
              		showPageControls: true,
              		slides: {
                			main: ["calendar", "compliments", "weather"],
                			"Slide 2": ["weather", "newsfeed"],
                			"Slide 3": ["MMM-PublicTransportHafas"]
              		},
              		keyBindings: {
                			enabled: true,
                				map: {
                  					NextSlide: "ArrowRight",
                 		 			PrevSlide: "ArrowLeft",
                  					Pause: "ArrowDown",
                  					Slide0: "Home"
                				},
               		 mode: "DEFAULT"
      			}
      		}
              },    
      	{
                  module: "alert"
              },
              {
                  module: "updatenotification",
                  position: "top_bar",
              },
              {
                  module: "calendar",
                  header: "US Holidays",
                  position: "top_left",
                  config: {
                      calendars: [
                          {
                              fetchInterval: 7 * 24 * 60 * 60 * 1000,
                              symbol: "calendar-check",
                              url: "https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics"
                          }
                      ]
                  }
              },
      	{
      		module: "MMM-Touch",
      		position: "top_right",
      	},
      	{
      		module: 'MMM-ViewNotifications',
      		position: "bottom_right",
      		header: "Notifications",
      		config: {
                      // See below for Configuration Options
      		}
      	},
              {
      		module: "compliments",
      		position: "lower_third",
      	},
              {
                  module: "weather",
                  position: "top_right",
                  header: "Weather Forecast",
                  config: {
                      weatherProvider: "openmeteo",
                      type: "forecast",
                      lat: 40.776676,
                      lon: -73.971321
                  }
              },
      	{
                  module: "weather",
                  position: "top_right",
                  header: "Weather Current",
                  config: {
                      weatherProvider: "openmeteo",
                      type: "current",
                      lat: 40.776676,
                      lon: -73.971321
                  }
      	},
              {
                  module: "newsfeed",
                  position: "bottom_bar",
                  config: {
                      feeds: [
                          {
                              title: "New York Times",
                              url: "https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml"
                          }
                      ],
                      showSourceTitle: true,
                      showPublishDate: true,
                      broadcastNewsFeeds: true,
                      broadcastNewsUpdates: true
                  }
              },
          	{
      		module: 'clock',
            		position: 'bottom_bar'
          	},
              {
      		module: "MMM-PublicTransportHafas",
                  	position: "bottom_left",
                  	config: {
                      	stationID: "645239",
                      	stationName: "18.-März-Straße",
                      	direction: "",
                      	excludedTransportationTypes: [],
                      	ignoredLines: [],
                      	timeToStation: 10,
                      	displayLastUpdate: true,
                      	maxUnreachableDepartures: 0,
                      	maxReachableDepartures: 7,
                      	showColoredLineSymbols: true,
                      	customLineStyles: "",
                      	showOnlyLineNumbers: false,
                      	showTableHeadersAsSymbols: true,
                      	useColorForRealtimeInfo: true
      		}
              },
              {
                  module: "MMM-Remote-Control",
                  //position: "bottom_right",
                  config: {
                      customCommand: {},
                      showModuleApiMenu: true,
                      secureEndpoints: false,
                      showQRCode: true,
                      qrCodeSize: 150,
                      qrCodePosition: "below"
                  }
              }
          ]
      };
      
      /***** DO NOT EDIT THE LINE BELOW *****/
      if (typeof module !== "undefined") { module.exports = config; }
      

      Thanks in advance,/Vielen Dank im voraus

      S 1 Reply Last reply Reply Quote 0
      • S Offline
        sdetweil @Mati_93
        last edited by sdetweil

        @Mati_93 why did you change from pages?
        also, future posts

        if config, or code or log files, use the code block around them

        paste text to message editor, blank line above and below
        select the text just pasted
        hit the </> button on the message editor tool bar

        I have fixed first post

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        M 2 Replies Last reply Reply Quote 0
        • M Offline
          Mati_93 @sdetweil
          last edited by

          @sdetweil
          Ok sorry , in hurry.
          Why? Because mnm-pages does not support keyBinding module. I want to move pages manually before I order IR touch frame.

          1 Reply Last reply Reply Quote 1
          • M Offline
            Mati_93 @sdetweil
            last edited by

            @sdetweil topic solved. I’ve downloaded older version from the first guy, not the forked one. Now everythings works perfect from shbatm.

            1 Reply Last reply Reply Quote 1
            • M Mati_93 has marked this topic as solved
            • 1 / 1
            • First post
              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