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.

    Deutsche Anleitung MagicMirror auf RaspberryPi 3

    Scheduled Pinned Locked Moved General Discussion
    118 Posts 20 Posters 158.2k Views 25 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.
    • CyruS1337C Offline
      CyruS1337 Project Sponsor @lavolp3
      last edited by

      @lavolp3 vielen Dank für dein Input und nochmals vielen Dank für deine Hilfe bei meinem vorherigen Problem.

      1 Reply Last reply Reply Quote 0
      • P Offline
        PaulB
        last edited by PaulB

        @Community Kann ich euch helfen?
        Fiel mir als Nicht-ITler am Anfang genauso schwer.
        Falls Ihr bei Englisch und Co. Hilfe braucht, gibt mir gerne Bescheid. Das Projekt macht einfach tierisch Spaß, da ist es doch klar, dass wir einander helfen.

        Viele Grüße aus Hamburg,
        Paul

        1 Reply Last reply Reply Quote 0
        • B Offline
          Binog
          last edited by

          Hallo Leute!
          Habe ne Frage zur compliments-remote Datei.
          Wo muss die die remote-Datei liegen? habe sie dahingesagt: MagicMirror/modules/default/compliments/custom_compliments.json
          und den Link so eingetragen:
          remoteFile: ‘http://i.p.raspi/default/compliments/custom_compliments.json’,

          Das tut aber nichts… was muss ich wo hinlegen, und wie eintragen?
          Viele Dank
          Jimmy

          lavolp3L 1 Reply Last reply Reply Quote 0
          • yawnsY Offline
            yawns Moderator
            last edited by

            remoteFile: 'custom_compliments.json' sollte ausreichend sein, wenn der Inhalt deiner Datei in Ordnung ist.

            Ich habe das damals mal getestet, weil einige User Probleme hatten, und das hier hat als Inhalt funktioniert:

            {
                "morning" : [
                    "heyho"
                ],
                "afternoon" : [
                    "home early?"
                ],
                "evening" : [
                    "finally home"
                ],
            	"fog" : [
            		"fog, oh no :("             
            	]
            }
            
            1 Reply Last reply Reply Quote 0
            • lavolp3L Offline
              lavolp3 Module Developer @Binog
              last edited by

              @binog Meine liegt auch im gleichen Ordner und wird genutzt wie @yawns das beschrieben hat

                      {
                      //disabled: true,
                      module: "compliments",
                      position: "lower_third",
                      config: {
                          classes: 'medium bright',
                          remoteFile: 'stromberg.json',
                          updateInterval: 12*60*60*1000,
                      }
                  },
              

              die json sieht so aus

              {
                  "anytime" : [
                  "....",
                  "....",
                  ]
              }
              

              (ja, es sind Stromberg-Zitate)

              How to troubleshoot modules
              MMM-soccer v2, MMM-AVStock

              1 Reply Last reply Reply Quote 0
              • B Offline
                Binog
                last edited by Binog

                Hey Yawns, hey, lavop3 Danke für Eure schnellen Antworten.

                Meine Json-Datei:

                {
                			"anytime": [
                				"Ha!"
                			],
                			"morning": [
                				"Gu",
                				"Ge !",
                				"Ha ?",
                				"Du!"
                			],
                			"afternoon": [
                				"Ha !",
                				"Na ?",
                				"Si!",
                				"Yo !"
                			],
                			"evening": [
                				"Wow !",
                				"Ha",
                				"He!",
                				"Ic !"
                			],
                
                			"day_sunny": [
                				"Today is a sunny day",
                				"It's a beautiful day"
                			],
                			"snow": [
                				"Snowball battle!"
                			],
                			"rain": [
                				"Don't forget your umbrella"
                			],
                }
                
                

                und meine config.js:

                		{
                			module: 'compliments',
                			position: 'top_center',
                			config: {
                				remoteFile: 'custom_compliments.json',
                				//remoteFile: 'http://i.p./default/compliments/custom_compliments.json',
                				},
                		},
                
                

                Dennoch bekomme ich die custom nicht angezeigt. Verstehe das nicht…

                lavolp3L 1 Reply Last reply Reply Quote 0
                • lavolp3L Offline
                  lavolp3 Module Developer @Binog
                  last edited by

                  @binog said in Deutsche Anleitung MagicMirror auf RaspberryPi 3:

                  und meine config.js:
                  {
                  module: ‘compliments’,
                  position: ‘top_center’,
                  config: {.
                  remoteFile: ‘custom_compliments.json’,
                  //remoteFile: ‘http://i.p./default/compliments/custom_compliments.json’,
                  },
                  },

                  Was macht der Punkt hinter config? Der muss weg.

                  How to troubleshoot modules
                  MMM-soccer v2, MMM-AVStock

                  1 Reply Last reply Reply Quote 0
                  • B Offline
                    Binog
                    last edited by

                    sorry, im Original nicht vorhanden. beim auslöschen einer Zeile drin geblieben.

                    1 Reply Last reply Reply Quote 0
                    • yawnsY Offline
                      yawns Moderator
                      last edited by

                      Hast Du den MagicMirror mal ein paar Minuten laufen lassen? Ich habe damals beobachten können, dass nach dem Start die Standard-Komplimente angezeigt wurden und einige Minuten später hat das System dann plötzlich meine eigenen Komplimente geladen.

                      So sah das damals in der Konsole aus:
                      Bild Text

                      1 Reply Last reply Reply Quote 0
                      • lavolp3L Offline
                        lavolp3 Module Developer
                        last edited by

                        Der nächste Versuch wäre den MagicMirror im dev mode zu starten und zu schauen ob du eine Meldung zu dem Modul bekommst.

                        npm start dev
                        

                        Wenn du den Autostart via pm2 aktiviert hast musst du vorher den pm2 Prozess stoppen

                        pm2 stop all
                        npm start dev
                        

                        How to troubleshoot modules
                        MMM-soccer v2, MMM-AVStock

                        1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 3
                        • 4
                        • 5
                        • 11
                        • 12
                        • 2 / 12
                        • 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