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: Dumb Question

      @wjdw87 Make sure that you created the mm.sh script as part of the pm2 process. Run ls -lh ~/ and see if mm.sh is one of the files.

      There should be an entry that looks like this:

      -rwxr-xr-x  1 pi pi   40 Oct 17 18:46 mm.sh
      
      posted in Troubleshooting
      bheplerB
      bhepler
    • RE: How to update.

      @wjdw87 The readme.md is also downloaded with the MirrorMirror code when you run the installation command. You’ll find it on your Pi at ~/MagicMirror/README.md.

      posted in Tutorials
      bheplerB
      bhepler
    • RE: Adding Modules... Please Please advise

      @wjdw87 Indeed, you can. The documentation for the newsfeed module gives a simple example.

      posted in General Discussion
      bheplerB
      bhepler
    • RE: mouse..

      If you have not installed the package “unclutter”, simply plug a USB mouse into your Raspberry Pi and move it about. You should see the mouse cursor.

      If you have installed unclutter, you may remove it via the command sudo apt-get remove unclutter.

      posted in Troubleshooting
      bheplerB
      bhepler
    • RE: Adding Modules... Please Please advise

      @wjdw87 Why do you have the newsfeed module specified twice? You have:

      {
      	module: 'newsfeed',
      	position: 'bottom_bar',
      	config: {
      		feeds: [
      			{
      				title: "Bloomberg Baby!",
      				url: "https://www.bloomberg.com/feeds/podcasts/etf_report.xml"
      			}
      		],
      		showSourceTitle: true,
      		showPublishDate: true
      	}
      },
      {
      	module: 'newsfeed',
      	position: 'bottom_bar',
      	config: {
      		feeds: [
      			{
      				tittle: "BBC Sci-Tech",
      				url: "http://feeds.bbci.co.uk/news/video_and_audio/technology/rss.xml?edition=uk"
      			}
      		],
      		showSourceTitle: true,
      		showPublishDate: true
      	}
      },
      

      Would it not make more sense to just put both feeds in the feed array?

      {
          module: 'newsfeed',
          position: 'bottom_bar',
          config: {
              feeds: [
                  {
                      title: "Bloomberg Baby!",
                      url: "https://www.bloomberg.com/feeds/podcasts/etf_report.xml"
                  },
                  {
                      title: "BBC Sci-Tech",
      		url: "http://feeds.bbci.co.uk/news/video_and_audio/technology/rss.xml?edition=uk"
                  }
              ],
              showSourceTitle: true,
              showPublishDate: true
          }
      }
      

      (Also, you misspelled “title” in your second newsfeed. You have an extra “t”.)

      posted in General Discussion
      bheplerB
      bhepler
    • RE: Motion Detector

      Check the console log. I suspect you’ll see a security error preventing the browser from accessing the monitor. Either launch your mirror in dev mode (modify your mm.sh script to read DISPLAY=:0 npm start dev and then restart via pm2 restart 0) or browse to your mirror’s address via a web browser and enter developere mode.

      posted in Utilities
      bheplerB
      bhepler
    • RE: Clock does not load Config section

      Please post your config.js file so that we may take a look at it. Please remember to use the markdown features of the forum while you’re at it. :)

      posted in Troubleshooting
      bheplerB
      bhepler
    • RE: touch screen not working through acrylic mirror

      Acrylic is a plastic and as such is not conductive. The capacitance touch screen works by your body’s natural conductivity. Your finger touch disrupts an electrical field and that disruption is measured to determine where you touched it. The acrylic mirror is an effective insulator and will prevent your touch from registering.

      If this blog/advertisement on photo booths is accurate, they use a Microsoft Kinect to perform motion tracking on the subject. Now adapting that would be an interesting RPi project!

      For more information: How Do Touch Screens Actually Work?

      posted in Hardware
      bheplerB
      bhepler
    • RE: Dev Gallery

      It’s not a bug, it’s a feature!
      Feature

      posted in General Discussion
      bheplerB
      bhepler
    • RE: Dev Gallery

      The Ultimate Reference Guide

      posted in General Discussion
      bheplerB
      bhepler
    • 1
    • 2
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 107 / 112