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

    Posts

    Recent Best Controversial
    • RE: Halloween mirror ghouls anyone?

      @Mitchfarino StackExchange had a pretty good start.

      Based upon the fact that the text value includes the HTML tag , you can probably put another tag in there to handle your script. Probably. I haven’t tried it. You may end up making some fancy character escaping in order to get it to work properly, but it should be possible. If I get the chance I’ll play with it.

      posted in General Discussion
      bheplerB
      bhepler
    • RE: MMM-temp-ds18b20

      @Thlb0 Those are some very comprehensive installation instructions. Well done.

      posted in Utilities
      bheplerB
      bhepler
    • RE: Please help

      For quick reference, the guide to using pm2 to automatically start the mirror process can be found here.

      I remember having trouble getting the UI displayed on my Raspberry PI 2, but I can’t remember what I did specifically to get it up and running. Assuming you are using a keyboard & mouse connected directly to the Pi, try this:

      • Start the Pi’s graphical interface (if it is not already running) by entering startx. You should eventually see a desktop, with a mouse cursor, menu, etc.
      • Open a terminal window using the Menu in the upper left.
      • In that terminal window, type cd ~/MagicMirror followed by npm start.

      That should at least give you your interface. If you are using SSH to issue commands to your mirror remotely, try the following:

      • Once you log into the Pi, navigate to the Magic Mirror directory like so: cd ~/MagicMirror
      • Start the magic mirror and specify that you want it to display on the monitor attached to the Pi: DISPLAY=:0 npm start

      It has been a while since I was playing around with my RPi 2. I think these will help.

      posted in General Discussion
      bheplerB
      bhepler
    • RE: Rss for news feeds?

      @deadherring said in Rss for news feeds?:

      and one from CNN, I configured on the pi itself, modifying the config file with a mouse and keyboard on the pi. The rest that I shared that weren’t working, modified the config file on my mac via text edit and then ftp’d the file up to the pi. I suspect that the mac might be saving the file in a way the pi does not like, or, as was suggested, inputting the " s in a way the pi does not like. At least, that’s my theory right now, I need to test when I get home.

      I think you may be on to something here. Looking back at your complete list of feeds, this is what showed up from your copy & paste:

      },
      
      title: “Jerusalem Post”
      url: “http://www.jpost.com/Rss/RssFeedsFrontPage.aspx”
      },
      

      Now I don’t know about your Mac, but from here that looks like some unicode characters where there should be UTF-8. The quotes around Jerusalem Post and the URL value are jacked up. I think you’re better off SSH into the Pi and using nano to edit the config.js file.

      posted in Troubleshooting
      bheplerB
      bhepler
    • RE: Loading compliments from external file

      Done. Thanks.

      posted in Requests
      bheplerB
      bhepler
    • Loading compliments from external file

      Greetings!

      My mirror project is destined to be a gift for a friend and as part of the configuration for it, my wife and her friends are writing a metric buttload (100+) of compliments. I’m going to have to load those compliments into the compliment module. Which is fine, but I am concerned that if I screw up even one of those compliments, the config.js file will not be a valid file and the MagicMirror interface will not display properly.

      My solution, thanks in no small part to @strawberry-3-141 expert assistance, is to put the compliment arrays into a separate JSON file and load that file as an optional parameter fileName. I have the code ready and it has passed my alpha testing. The fileName parameter is optional and this is an extension of the existing core modules.

      I’d like to add this feature to the core MagicMirror project. Is this a valuable feature? How do I go about contributing a minor change to the core?

      posted in Requests
      bheplerB
      bhepler
    • RE: more newsfeed's

      @geeflaxx Don’t forget that you can specify more than one feed per instance of the module. So you could run one instance of the module that displays two feeds in middle_center and another instance of the module in bottom_center that shows the other two feeds.

      Like so:

      {
              module: 'newsfeed',
              position: 'middle_center', 
              config: {
                  feeds: [
                      {
                          title: "Feed  #1",
                          url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml",
                      },
                      {
                          title: "Feed #2",
                          url: "http://whatever.com/news/rss",
                      },
                  ]
              }
          },
      {
              module: 'newsfeed',
              position: 'bottom_center',
              config: {
                  feeds: [
                      {
                          title: "Feed #3",
                          url: "http://www.kittennews.com/news/feed/",
                      },
                      {
                          title: "Feed #4",
                          url: "http://feeds.midgetpr0n.com/events/fresh/rss",
                      },
                  ]
              }
          }
      posted in Development
      bheplerB
      bhepler
    • RE: Motion Detector

      @done Wait, does it work for you? Because it’s not working for me and this is the last thing I need before my mirror is done.

      posted in Utilities
      bheplerB
      bhepler
    • RE: SSH Connection failed (terminal (Mac) to Raspberry)

      @PaulB You can flash the card, but once it’s in the Pi, you can’t SSH to it?

      Are you receiving a login prompt at all, or is the connection failing? Have you tried SSH to the IP address of the Pi? ssh pi@192.168.0.3 (or whatever).

      Does anyone remember if SSH is enabled on Raspbian by default? Or must you log in to the Pi itself and configure it?

      posted in Troubleshooting
      bheplerB
      bhepler
    • RE: Black screen after installation on Pi 2 model B V1.1

      At a guess, it looks like you put the header for your module in the module name specification. The module: [name] lines must match the name of the module. These names also correspond with folders in the ~/MagicMirror/modules path. The modules that are installed with the MagicMirror code (which I believe you are trying to use) will be in ~/MagicMirror/modules/default/[module name]

      So try this instead:

      {
      		module: 'currentweather',
      		position: 'top_right',
      		config: {
      			location: 'Bayreuth, Germany',
      			locationID: '5128581', 
      			appid: '158010f0c45e255e6439eb1885b3482b'
      		}
      	},
      	{
      		module: 'weatherforecast',
      		position: 'top_right',
      		header: 'Wettervorhersage',
      		config: {
                           location: 'Bayreuth, Germany',
      		     locationID: '5128581',  
                           appid: '158010f0c45e255e6439eb1885b3482b'
      		}
      	},
      
      posted in Troubleshooting
      bheplerB
      bhepler
    • 1
    • 2
    • 103
    • 104
    • 105
    • 106
    • 107
    • 111
    • 112
    • 105 / 112