• 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-PIR-Sensor - White Screen

Scheduled Pinned Locked Moved Troubleshooting
90 Posts 24 Posters 126.4k 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.
  • P Offline
    phantomlight @Bangee
    last edited by Oct 16, 2016, 11:46 PM

    @Bangee Thank you so much for responding. I removed magic mirror completely reinstalled… then installed the module.

    All is well now… Thank you so much!

    1 Reply Last reply Reply Quote 0
    • B Offline
      bibi @Bangee
      last edited by Oct 25, 2016, 9:57 AM

      @Bangee hi ! thx for your nice tuto, i have proceed with it but i got a warning as below:

      pi@raspberrypi:~/MagicMirror/modules/MMM-PIR-Sensor $ npm install
      npm WARN prefer global npm@3.10.9 should be installed with –g
      do i have to do smt specific or it’s just ok to leave it without any action?
      ps: my config file is also not working with PIR module implemented… maybe that is the reason? thx you very much for any feedabck guys!!

      1 Reply Last reply Reply Quote 0
      • B Offline
        Bangee Module Developer
        last edited by Oct 25, 2016, 1:02 PM

        @bibi did you try it with the instructions from paviro:
        https://github.com/paviro/MMM-PIR-Sensor

        I don’t think that this warn is your problem. I have so many times these warnings :-D
        You sould send us whats in your pm2 logs mm

        B 2 Replies Last reply Oct 25, 2016, 2:39 PM Reply Quote 0
        • B Offline
          bibi @Bangee
          last edited by Oct 25, 2016, 2:39 PM

          @Bangee yes i follow his and yours… quite the same… regarding this npm warning I do nothing then as understood?
          I will send you the log later when I’m home
          Thx bangee! Appreciated!

          1 Reply Last reply Reply Quote 0
          • B Offline
            bibi @Bangee
            last edited by Oct 25, 2016, 4:44 PM

            @Bangee so as expected the pm2 log mm just show that the file has syntax error… here is my config file, i put the module at the end…
            0_1477413847262_Capture d’écran 2016-10-25 à 18.42.21.png
            thx again :)

            S 1 Reply Last reply Oct 25, 2016, 7:52 PM Reply Quote 0
            • S Offline
              strawberry 3.141 Project Sponsor Module Developer @bibi
              last edited by Oct 25, 2016, 7:52 PM

              @bibi powerSaving: true

              Please create a github issue if you need help, so I can keep track

              B 1 Reply Last reply Oct 25, 2016, 8:30 PM Reply Quote 0
              • B Offline
                bibi @strawberry 3.141
                last edited by bibi Oct 25, 2016, 8:30 PM Oct 25, 2016, 8:30 PM

                @strawberry-3.141 right was a typo but still the config file is “not created” :((

                S 1 Reply Last reply Oct 26, 2016, 11:51 AM Reply Quote 0
                • S Offline
                  strawberry 3.141 Project Sponsor Module Developer @bibi
                  last edited by Oct 26, 2016, 11:51 AM

                  @bibi can you post your whole config file?

                  Please create a github issue if you need help, so I can keep track

                  B 1 Reply Last reply Oct 26, 2016, 3:29 PM Reply Quote 0
                  • B Offline
                    bibi @strawberry 3.141
                    last edited by paviro Jan 12, 2017, 10:20 PM Oct 26, 2016, 3:29 PM

                    @strawberry-3.141 here you go and many thx in advance - i struggling with this now (sorry i don’t know why only few parts of the code is with the color background)

                    /* Magic Mirror Config Sample
                     *
                     * By Michael Teeuw http://michaelteeuw.nl
                     * MIT Licensed.
                     */
                    var config = {
                            port: 8080,
                    
                            language: 'en',
                            timeFormat: 24,
                            units: 'metric',
                    
                            modules: [
                                    {
                                            module: 'alert',
                                    },
                                    {
                                            module: 'clock',
                                            position: 'top_left'
                                    },
                                    {
                                            module: 'calendar',
                    
                                            header: 'US Holidays',
                                            position: 'top_left',
                                            config: {
                                                    calendars: [
                                                            {
                                                                    symbol: 'calendar-check-o ',
                                                                    url: 'webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics'
                                                            }
                                                    ]
                                            }
                                    },
                                    {
                                            module: 'compliments',
                                            position: 'lower_third'
                                    },
                                    {
                                            module: 'currentweather',
                                            header: 'xxx',
                                            position: 'top_right',
                                            config: {
                                                    location: 'xxx,xxx',
                                                    locationID: 'xxx',  //ID from http://www.openweathermap.org
                                                    appid: 'xxx'
                                            }
                                    },
                                    {
                                            module: 'newsfeed',
                                            position: 'bottom_bar',
                                            config: {
                                                    feeds: [
                                                            {
                                                                    title: "New York Times",
                                                                    url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
                                                            },
                    
                                                    ],
                                                    showSourceTitle: true,
                                                    showPublishDate: true
                                    },
                                    {
                                            module: 'MMM-PIR-Sensor',
                                            config: {
                                                    sensorPIN: 22,
                                                    powerSaving: true
                                            }
                                    },
                            ]
                    };
                    
                    /*************** DO NOT EDIT THE LINE BELOW ***************/
                    if (typeof module !== 'undefined') {module.exports = config;}
                    

                    Note from admin: Please use Markdown on code snippets for easier reading!

                    1 Reply Last reply Reply Quote 0
                    • Y Offline
                      yawns Moderator
                      last edited by Oct 26, 2016, 3:34 PM

                      Everything with at least one tab indent is treated as code and highlighted. ;)

                      B 1 Reply Last reply Oct 26, 2016, 3:40 PM Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 5
                      • 6
                      • 7
                      • 8
                      • 9
                      • 5 / 9
                      • 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