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

    Posts

    Recent Best Controversial
    • RE: Deutsche Anleitung MagicMirror auf RaspberryPi 3

      Sorry I Think i Create a Post in German too
      OK

      posted in General Discussion
      R
      radioman
    • RE: Deutsche Anleitung MagicMirror auf RaspberryPi 3

      Hallo Gemeinde
      Ich habe das Modul MMM-Pages installiert (nur das Modul noch zusätzlich das MMM-Page-Indicator Modul)
      Meine 2 Seiten wechseln auch.

      	
      		{
              module: 'MMM-pages',
              config: {
              animationTime: 0,
      		rotationTime: 10000,
      		rotationDelay: 0,
      		pages: 2,
      		         modules:
                          [[ "calendar", "weatherforecast"],
                           [ "MMM-RAIN-RADAR" ]],
                      fixed: ["clock", "MMM-OpenmapWeather", "MMM-page-indicator"],
               }        
              },
      		
      
      

      Nun möchte ich zusätzlich mit Alexa die Seiten nach bedarf umschalten.
      Hier meine Config

      {
                  module: 'MMM-AlexaControl',
                  position: 'bottom_left',
                  config:{
                      image: false,
                      pm2ProcessName: "mm",
                      refresh: true,
                      restart: true,
                      reboot: false,
                      monitorToggle: true,
                      vcgencmd: 'vcgencmd',
                      deviceName: "Spiegel",
                      startPort: 12000,
                      notifications: [
          							  {
             			 					name: 'Radar',
             			    			    port: 11101,
              					        OnOff: true,
              		 					notification: [["SHOW_RADAR", null],["HIDE_RADAR", null]]
                   						},
                   						{
              							name: 'Seite eins',
             								port: 11102,
              							OnOff: true,
              							notification: ["PAGE_CHANGED", 0]
              							},
              							{
              							name: 'Seite zwei',
             								port: 11103,
              							OnOff: true,
              							notification: ["PAGE_CHANGED", 1]
              							}
      				]
                
               }
             	 },	
      
      
      

      Alexa findet auch Geräte aber ich kann Sie nicht einschalten
      Leider finde ich meinen Gedankenfehler nicht

      posted in General Discussion
      R
      radioman
    • MMM-Pages and Alexa

      I have a problem with MMM-Pages (only have MMM-Pages installed) and Alexa
      I’ve already managed to change the 2 sides see code:

      {
              module: 'MMM-pages',
              config: {
              animationTime: 0,
      		rotationTime: 10000,
      		rotationDelay: 0,
      		pages: 2,
      		         modules:
                          [[ "calendar", "weatherforecast"],
                           [ "MMM-RAIN-RADAR" ]],
                      fixed: ["clock", "MMM-OpenmapWeather", "MMM-page-indicator"],
               }        
              },
      		
      
      

      Now I would like to switch the pages on or switch over with Alexa see code:

      {
                  module: 'MMM-AlexaControl',
                  position: 'bottom_left',
                  config:{
                      image: false,
                      pm2ProcessName: "mm",
                      refresh: true,
                      restart: true,
                      reboot: false,
                      monitorToggle: true,
                      vcgencmd: 'vcgencmd',
                      deviceName: "Spiegel",
                      startPort: 12000,
                      notifications: [
          							  {
             			 					name: 'Radar',
             			    			    port: 11101,
              					        OnOff: true,
              		 					notification: [["SHOW_RADAR", null],["HIDE_RADAR", null]]
                   						},
                   						{
              							name: 'Seite eins',
             								port: 11102,
              							OnOff: true,
              							notification: ["PAGE_CHANGED", 0]
              							},
              							{
              							name: 'Seite zwei',
             								port: 11103,
              							OnOff: true,
              							notification: ["PAGE_CHANGED", 1]
              							}
      				]
                
               }
             	 },	
            
      
      

      Unfortunately that doesn’t work.
      Now the question where is my mistake
      P.S. Alexa finds my devices

      posted in Forum
      R
      radioman
    • RE: Deutsche Anleitung MagicMirror auf RaspberryPi 3

      Ich hab das mal versucht aber es verschiebt mir alle Kalender
      Ich habe alles zurückgestelt und die Verschiebung der region wieder vorgenommen so wie ich es brauche
      Ich hatte mir zwar schon sowas gedacht aber ich habs trotzdem mal versucht
      Danke aber trotzdem für den Tipp

      posted in General Discussion
      R
      radioman
    • RE: Deutsche Anleitung MagicMirror auf RaspberryPi 3

      Hat jemand Erfahrung mit dem Modul MMM-Pages

      posted in General Discussion
      R
      radioman
    • RE: Deutsche Anleitung MagicMirror auf RaspberryPi 3

      Das mit der Ausrichtung des mittleren Kalenders habe ich hinbekommen indem ich in die custom.js folgendes eingetragen habe.

      
      .region.top.center {
      background : black;
      margin-left: 10px;
      margin-top: 130px;
      }
      
      posted in General Discussion
      R
      radioman
    • RE: Do not display modules when booting MagicMirror

      I got that with the alignment of the middle calendar.
      I entered the parameters for the calendar module in custom.js.

      
      .region.top.center {
      background : black;
      margin-left: 10px;
      margin-top: 130px;
      }
      

      So I can solve part of the problem myself.

      posted in Troubleshooting
      R
      radioman
    • Do not display modules when booting MagicMirror

      I have another question
      When booting the Magic Mirror, all my modules come as they should.
      I can switch the rain radar off and on with Alexa and the remote function.
      Now I would like that the rain radar is not displayed when booting and the rain radar is only displayed on request with Alexa or Remote.
      How can you implement that.
      And can you adjust the middle calendar to the same height as the first left calendar?
      Thanks in advance.
      MM.PNG

      posted in Troubleshooting
      R
      radioman
    • RE: Deutsche Anleitung MagicMirror auf RaspberryPi 3

      Habe noch einmal eine Frage
      Beim booten des Magic Mirror kommen alle meine Module so wie es sei soll.
      Ich kann mit Alexa und der Remote Funktion den Regenradar aus und einschalten.
      Nun möchte ich gerne das beim Boozten der Regenradar erst mal nicht angezeigt wird und erst auf anforderung mit Alexa oder Remote der Regenradar eingeblendet wird.
      Wie kann mann das umsetzen.
      Und kann mann den mittleren Kalender auf die gleiche höhe angleichen wie der erste linke Kalender?
      Danke schon mal
      MM.PNG

      posted in General Discussion
      R
      radioman
    • RE: Personal favorites list with forum posts

      Ok Thank You

      posted in General Discussion
      R
      radioman
    • 1 / 1