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

    Posts

    Recent Best Controversial
    • RE: windows remote desktop doesn't show same screen as on hdmi

      Thnaks, that makes it a lot easier ;)

      posted in Troubleshooting
      J
      Jeff
    • RE: Dual display

      @lolobyte said in Dual display:

      The Raspi can’t manage two displays!

      2 display’s = 2 raspi’s!

      Do you really mean the Raspi, or do you mean MagicMirror?
      There is a VGA Modul for the Rasp, to handle two displays.

      It’s just interesting if MM knows hof to show it correct on restart.

      posted in Hardware
      J
      Jeff
    • windows remote desktop doesn't show same screen as on hdmi

      Hi
      I’m using tightvncserver on my pi.
      Connected to the pi is a hdmi monitor.

      When I connect via windows remote desktop to the pi, I don’t see the same screen as it is shown on hdmi.

      How can I fix this?

      thanks

      posted in Troubleshooting
      J
      Jeff
    • End MM from Terminal

      Hi,
      if I start MM from my computer via ssh terminal, how can I finish the prozess?
      In the terminal its’s just the runnnig prozess…

      Thanks

      posted in Troubleshooting
      J
      Jeff
    • RE: node serveronly not working

      @strawberry-3.141 said in node serveronly not working:

      localhost will only work if you’re trying to access the site on the raspberry itself, on a diferent device you have to replace localhost with the ip of the raspberry

      I was on the raspi

      posted in Troubleshooting
      J
      Jeff
    • node serveronly not working

      Hi,
      I try to reach my MM on serveronly mode.

      The command says : Ready to go! Please point your browser to: http://localhost:8080

      But when I go to http://localhost:8080

      the browser says: Not reachable
      ("Diese Website ist nicht erreichbar

      localhost hat die Verbindung abgelehnt.")

      What do I have to do?

      Thanks

      posted in Troubleshooting
      J
      Jeff
    • RE: Image Galery

      @fragator
      When does it mot work?
      Always the same picture?

      posted in Requests
      J
      Jeff
    • Flat Screen TV + Touchpanel or film?

      Hi,
      I have an old 32" LED TV I’ll use for my MM project.

      Now I also would like to have some sort of touch display to control e.g. the music…

      Can I work with a VGA modul for using a second screen und next to my TV?
      Or can I use some sort of overlay film?

      What are your experiences?

      Thanks

      posted in Hardware
      J
      Jeff
    • RE: Dual display

      I’m really interested if it works.
      Has anybody tried yet?

      posted in Hardware
      J
      Jeff
    • RE: Trafficmaps

      @wscheer
      oh okay, I already did that and the command line said my page was created correctly.
      But in teh browser it said page not found.

      I think that’s a different problem and I have to handle that first…

      posted in Development
      J
      Jeff
    • RE: Xiaomi Mi Scale (and Mi Band?)

      Have you made any progress?
      Would be great

      posted in Requests
      J
      Jeff
    • RE: News Ticker

      Any update on this?

      posted in Requests
      J
      Jeff
    • RE: Trafficmaps

      @wscheer

      Thanks for your quick reply.
      Can you just tell me how to enter the “standalone” mode?
      thanks

      posted in Development
      J
      Jeff
    • RE: Image Galery

      Take this one :)
      https://github.com/jeffjoe/MMM-Instagram

      Or just change in the config.js:

      {
          module: 'MMM-Instagram',
          position: 'top_right',
          config: {
              access_token: '......',
              count: 200,  
              min_timestamp: 0,
              animationSpeed: 5500,
              updateInterval: 12500,
              instaMaxWidth: '20%', // Optional parameter, can be relative (percentage) or absolute (px)
              instaMaxHeight: '' // Optional parameter, can be absolute only (px)
          }
      },
      

      and in the MMM-instagram.js use this

      // set the first item in the list...
              if (this.activeItem >= this.images.photo.length) {
                  this.activeItem = 0;
              }
              
              var tempimage = this.images.photo[this.activeItem];
              
              // image       
      	//imageLink.innerHTML = "<img src='https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png'>";
              
      
              var imageWrapper = document.createElement("img");
      	    imageWrapper.src = tempimage.photolink;
      	    imageWrapper.id = "MMM-Instagram-image";
      	    imageWrapper.style.maxWidth = this.config.instaMaxWidth;
      	    imageWrapper.style.maxHeight = this.config.instaMaxHeight;
      	    imageDisplay.appendChild(imageWrapper);
              
      
      	wrapper.appendChild(imageDisplay);
             
              return wrapper;
          },
      

      and for using the css file use:

      #MMM-Instagram-image {
          }
      

      e.g.:

      #MMM-Instagram-image {
          -webkit-filter: invert(1);
          filter: invert(1);
      }
      posted in Requests
      J
      Jeff
    • RE: MMM-Instagram - Pull and animate photos from Instagram feed

      @yo-less
      Thanks for your work, but you had a spelling and ; mistakes on the github upload.
      e.g.: imageWrapper.src = tempimpage.photolink;

      I got rid of them.
      https://github.com/jeffjoe/MMM-Instagram

      posted in Utilities
      J
      Jeff
    • RE: Image Galery

      @fragator
      I thought that would be a quick thing ;)
      But I can’t find the right parameters neigther…

      I was looking at

       getStyles: function() {
              return ['instagram.css', 'font-awesome.css'];
      

      but can’t find font-awesome.css. Maybe just a file the creator forgot to delete.

      The pictures are smaller in the mirror, than they are on instagram.
      So there must be a parameter somewhere.

      I’ll keep searching for them or try to add some.

      We should go to the original thread for this modul:
      https://forum.magicmirror.builders/topic/396/mmm-instagram-pull-and-animate-photos-from-instagram-feed

      posted in Requests
      J
      Jeff
    • RE: Trafficmaps

      @wscheer
      Is this modul still working?

      I did everthing you explained:

      in my config.js:

      {
                            module: 'maproute',
                            position: 'middle_center',
                            
                      },
      

      And /var/www/html/MagicMirror/modules/maproute/maproute.js is the code from above.

      I’ve created an API for Bing maps.

      But if I run MM I just see a small image. Like the right picture could not be found.
      And if I look to the report om bing how often my API was used, it counts 0.

      Where is the mistake?

      Thanks

      posted in Development
      J
      Jeff
    • RE: How to implement specific module?

      @bhepler said in How to implement specific module?:

      @Jeff Installing new modules is a pretty easy process. In general, it goes like this:

      • Navigate to the modules directory at ~/MagicMirror/modules
      • Download the module code using git: git clone [url]
      • Run any commands that the module requires. This will vary by module
      • Update the config.js file to configure the new module. There should be an example in the module readme. sudo nano ~/MagicMirror/config/config.js
      • Restart your mirror so the new configuration will be implemented. npm restart

      Do I also have to run npm update everytime auf git clone?
      Or does that belong to point 3?

      posted in Troubleshooting
      J
      Jeff
    • RE: How to implement specific module?

      Is it possible to get the moduls html running with the iframe modul?
      https://github.com/desertblade/iFrame

      posted in Troubleshooting
      J
      Jeff
    • RE: Image Galery

      Is it important that it’s flickr?
      I’m using my picture frame with instagram. I created a new instagram acc, registered as a dev and received the API.
      The new instagram account is made private, so it’s just possible for me to see the pictures.
      Works perfect!
      I used this this modul:
      https://github.com/kapsolas/MMM-Instagram

      posted in Requests
      J
      Jeff
    • 1 / 1