• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
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.

MMM-GoogleTasks makes MMM-CalendarExt disappear when applied to config file

Scheduled Pinned Locked Moved Troubleshooting
11 Posts 3 Posters 1.9k Views 3 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.
  • R Offline
    RyanRoyster @RyanRoyster
    last edited by May 11, 2020, 11:58 AM

    @RyanRoyster I think it is on another page, but I can’t change pages…

    1 Reply Last reply Reply Quote 0
    • B Offline
      bhepler Module Developer @RyanRoyster
      last edited by May 11, 2020, 12:34 PM

      @RyanRoyster - Since the magic mirror is essentially a web page, you can point your computer/tablet at the magic mirror’s network address. You will be able to bring up the magic mirror interface in your web browser and you can then check for a scroll bar.

      S 1 Reply Last reply May 11, 2020, 12:58 PM Reply Quote 0
      • R Offline
        RyanRoyster
        last edited by May 11, 2020, 12:36 PM

        just for the sake of simplicity, how do i find the address of the magicmirror itself?

        1 Reply Last reply Reply Quote 0
        • S Offline
          sdetweil @bhepler
          last edited by May 11, 2020, 12:58 PM

          @bhepler >you can point your computer/tablet at the magic mirror’s network address

          IF the MM config allows remote access

          address:"0.0.0.0",
          ipWhitelist:[],
          

          unless u configured exact settings

          address:"localhost", 
          

          means ONLY apps INSIDE the mirror can access the mirror web address

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          1 Reply Last reply Reply Quote 0
          • R Offline
            RyanRoyster
            last edited by May 11, 2020, 1:37 PM

            Sorry man I’m still not getting it. I keep changing ip’s and checking different settings and I cant seem to connect to an IP address to open the MM

            1 Reply Last reply Reply Quote 0
            • R Offline
              RyanRoyster
              last edited by May 11, 2020, 1:40 PM

              I even changed it to any ip… can you give me a real sample of what its suppose to look like?

              B 1 Reply Last reply May 11, 2020, 9:40 PM Reply Quote 0
              • B Offline
                bhepler Module Developer @RyanRoyster
                last edited by May 11, 2020, 9:40 PM

                @RyanRoyster - Short answer: It’s what you see on your mirror, but in your web browser.

                Long answer: The Magic Mirror consists of about three main parts. There’s a web application that runs in Node.js, a display app called Electron that displays the contents of the web app, and a monitoring app called PM2 that starts everything automatically and restarts it if it crashes.

                Because it’s a web app, it works like a web server. When you look at your mirror, you’re essentially seeing Electron acting like a web browser pointed to a web server. They just happen to be on the same machine. What we’re trying to get set up for you is to use your regular web browser (Edge, Chrome, Firefox, Safari or whatever) to do the same task as Electron: display what the web server is serving up.

                Let’s get you browsing

                To answer your other question about the IP address: Assuming that you’re working on your mirror’s RasPi itself, you can find the ip address by opening up a terminal window and typing ifconfig. You’ll get a bunch of stuff back, but what you’re looking for will be like this:

                wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
                        inet 10.0.0.15  netmask 255.255.255.0  broadcast 10.0.0.255
                

                Quick interpretation: wlan0 = wireless adapter. If you’re connected via WiFi, this is where you wish to look. inet 10.0.0.15 this is your IP address.

                Okay, that said, edit your config.js and at the top of the file, find this section:

                var config = {
                        address: "0.0.0.0",      < Make it read thusly
                        port: 8080,
                        ipWhitelist: [],         < likewise
                

                Save your file. On your computer, on the same WiFi network, open your web browser and point it at the IP address you grabbed earlier. Remember to add the port number! In my case, http://10.0.0.15:8080

                Your web browser should show you your MM interface.

                1 Reply Last reply Reply Quote 0
                • 1
                • 2
                • 1 / 2
                1 / 2
                • First post
                  9/11
                  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