MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. Mati_93
    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 1
    • Posts 3
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: MMM- Carousel

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

      posted in Troubleshooting
      M
      Mati_93
    • RE: MMM- Carousel

      @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.

      posted in Troubleshooting
      M
      Mati_93
    • MMM- Carousel

      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

      posted in Troubleshooting
      M
      Mati_93
    • 1 / 1