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

    Mondfisch

    @Mondfisch

    0
    Reputation
    195
    Profile views
    10
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online
    Location DE

    Mondfisch Unfollow Follow

    Latest posts made by Mondfisch

    • RE: How to Backup MagicMirror on Laptop with unbutu

      @Stoffbeuteluwe :

      Thank you! :-)

      posted in General Discussion
      MondfischM
      Mondfisch
    • RE: How to Backup MagicMirror on Laptop with unbutu

      Hi there,

      digging this out again…

      Sorry for the stupid Question: Just copy the Folder - install nothing?
      Just copy the Folder to a fresh installed Raspbian?

      Thanks!

      posted in General Discussion
      MondfischM
      Mondfisch
    • RE: Combination MMM-Carousel, MMM-OnScreenMenu & MMM-Keybindings

      Hi,

      I’m not sure, wheter Keybindings really works, since only OnScreenMenu reacts on pressing the Menu Key.
      I’ve played around the last Month with Enabling Keybindings in every of the Modules (OnScreenMenu,Key-
      Bindings,Carousel) by changing that… Never got it to work…
      I found out, that the hidden Mousecoursor, when its “over” the Arrows of Carousel, reacts on pressing them.
      So I am able to control them by Mouse, at least…
      the Rest I never get to work together…

      KeyBindings is still Default, as you can see above…

      posted in Troubleshooting
      MondfischM
      Mondfisch
    • RE: MMM-Spotify

      Thank you for answering…

      I´m not sure which log do you mean… Can you give me a path, i will post it, then…

      posted in Entertainment
      MondfischM
      Mondfisch
    • RE: MMM-Spotify

      Hello,

      i am using your Module a couple of Months, it always worked well…
      …but since the last Update, it “hangs” after a couple of Minutes, which means,
      it still shows up, but the Title-Information and the Time is frozen.
      I am using MMM-Spotify and MMM-NowPlayingOnSpotify (I also use MMM-Carousel,
      so I have different “screens” on which I use both Modules, but not simultaneously.
      While MMM-Spotify is “freezing”, MMM-NowPlayingonSpotify is going on well…

      They worked BOTH OK, before the Update…

      Any Ideas?

      posted in Entertainment
      MondfischM
      Mondfisch
    • RE: Multiple MMM-mvgmunich Instances possible?

      Hello again,

      diggin this out again… The Author of the Module has updated the Module, and in the Changelog,
      he says, he has fixed Problems with loading the PluIn more than once.
      Is it now possible to load the Module more than one Time to monitor more Stations?

      Thanx!

      posted in Troubleshooting
      MondfischM
      Mondfisch
    • RE: Multiple MMM-mvgmunich Instances possible?

      Thanx!

      Found another Module : trgraglia/MMM-MVG-LocalTransport
      Gonna test that one and maybe I combine it with mvgmunich…

      posted in Troubleshooting
      MondfischM
      Mondfisch
    • Multiple MMM-mvgmunich Instances possible?

      Hello,

      my Mirror works OK, also the MMM-mvgmunich Module from mrVragec.
      But I want to see the DepartureTimes of more than 1 Station, so I want to create another Instance of the Module or anything like that to be able to do that…
      Any Ideas?

      Like I said, Goal should be the Ability to view more than 1 Station.

      Thanks!

      posted in Troubleshooting
      MondfischM
      Mondfisch
    • RE: [MMM-NowPlayingOnSpotify] – Display the currently on Spotify playing song

      Works 100%!
      Great Work! Thanx for that!

      posted in Entertainment
      MondfischM
      Mondfisch
    • Combination MMM-Carousel, MMM-OnScreenMenu & MMM-Keybindings

      Hello,

      I have combined the 3 Modules MMM-Carousel, MMM-OnScreenMenu and MMM-KeyBindings.
      But I dont get the Keyboard-Thing…

      		{
          			module: 'MMM-KeyBindings',
          				config: {
              			evdev: { enabled: false },
      //        			enableKeyboard: true,
      					}
      		},
      
              	{
                  		module: 'MMM-Carousel',
                  		position: 'bottom_bar', // Required only for navigation controls
                  			config: {
                      			transitionInterval: 10000,
                      			ignoreModules: ['clock', 'alert', 'MMM-OnScreenMenu'],
                      			mode: 'slides',
      					slideTransitionSpeed: 1500,
                      			showPageIndicators: true,
                      			showPageControls: true,
                      			slides: {
                          			main: ['calendar', 'compliments', 'currentweather'],
                          			"Slide 2": ['weatherforecast', 'mvgmunich', 'MMM-AVStock', 'newsfeed'],
                          			"Slide 3": ['MMM-LICE']
                      			        },
                      			keyBindings: {
                          					enabled: true,
                          					map: {
                              				NextSlide: "ArrowRight",
                              				PrevSlide: "ArrowLeft",
                              				Slide0:    "Home",
                         				     	     },
                          					mode: "DEFAULT"
                      				     }
                  				}
              	},
      
      	        {
                  		module: 'MMM-OnScreenMenu',
                  		position: 'bottom_left',
                  		/* Valid positions: 'top_right', 'top_left', 'bottom_right', 'bottom_left' */
                  		config: {
                      		touchMode: true,
              			menuItems: {
                  				monitorOff: { title: "Turn Off Monitor", icon: "television", source: "SERVER" },
                  				restart: { title: "Restart MagicMirror", icon: "recycle", source: "ALL" },
                  				refresh: { title: "Refresh MagicMirror", icon: "refresh", source: "LOCAL" },
                  				reboot: { title: "Reboot", icon: "spinner", source: "ALL" },
                  				shutdown: { title: "Shutdown", icon: "power-off", source: "ALL" },
              				   },
                      		enableKeyboard: true,
      				enableKeyBindings: true,
      				keyBindingsMode: "OSM",
      				keyBindings: {
      						enabled: true,
      						map: {
      							Up: "ArrowUp",
      							Down : "ArrowDown",
      							Select: "Enter",
      							Close: "Return",
      							Menu: "Menu",
      						     },
      				kbMultiInstance: true,
      				keyBindingsTakeFocus: "Menu",
                      		menuName: "Main",
      					     }
                      	        }
      
      

      At the Moment, only the OnScreenMenu reacts on pressing the Menu-Key… When I change the “// enableKeyboard: true,” in
      KeyBindings-config, the Carousel reacts on the Arrow-Keys for sliding
      the different Mirror-Screens…
      But I can’t get it to work with BOOTH Modules, ScreenMenu AND Carousel…So when I press left & right Arrow for sliding, while pressing
      Menu/ArrowUp/Down for the Menu and choosing a Option…

      Can anyone point to the right Direction, please?

      Thanx…

      posted in Troubleshooting
      MondfischM
      Mondfisch