• 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.

Not really a mirror at all - but is really helpful

Scheduled Pinned Locked Moved Showcase
24 Posts 10 Posters 35.1k Views 20 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.
  • S Offline
    schlachtkreuzer6 @dinkybluebug245
    last edited by Dec 17, 2016, 10:47 PM

    @dinkybluebug245 hey nice work! What did you change in the remote control module to switch between partymodus and normal?

    D 1 Reply Last reply Dec 18, 2016, 5:42 PM Reply Quote 0
    • D Offline
      dinkybluebug245 @schlachtkreuzer6
      last edited by dinkybluebug245 Dec 18, 2016, 5:46 PM Dec 18, 2016, 5:42 PM

      @schlachtkreuzer6 In Nodehelper.js - I changed lines 104-117. I didnt need the option of monitor on and off, as I have a PIR sensor attached to my display.

      if (query.action === 'MONITORON')
      		{
      			exec('cp ../MagicMirror/css/party_custom.css ../MagicMirror/css/custom.css', opts, function(error, stdout, stderr){ self.checkForExecError(error, stdout, stderr, res); });
      			exec('cp ../MagicMirror/config/party_config.js ../MagicMirror/config/config.js', opts, function(error, stdout, stderr){ self.checkForExecError(error, stdout, stderr, res); });
      			exec('pm2 restart mm', opts, function(error, stdout, stderr){ self.checkForExecError(error, stdout, stderr, res); });
      			return true;
      		}
      		if (query.action === 'MONITOROFF')
      		{
      			exec('cp ../MagicMirror/css/normal_custom.css ../MagicMirror/css/custom.css', opts, function(error, stdout, stderr){ self.checkForExecError(error, stdout, stderr, res); });
      			exec('cp ../MagicMirror/config/normal_config.js ../MagicMirror/config/config.js', opts, function(error, stdout, stderr){ self.checkForExecError(error, stdout, stderr, res); });
      			exec('pm2 restart mm', opts, function(error, stdout, stderr){ self.checkForExecError(error, stdout, stderr, res); });
      			return true;
      		}
      

      As the functions had changed, I then changed the text displayed in the app , by changing the text in the remote.html file. Line 80- 87

                     <div id="monitor-on-button" class="menu-element button main-menu">
                          <span class="fa fa-fw fa-glass" aria-hidden="true"></span>
                          <span class="text">Party Mode</span>
                      </div>
                      <div id="monitor-off-button" class="menu-element button main-menu">
                          <span class="fa fa-fw fa-calendar" aria-hidden="true"></span>
                           <span class="text">Calendar Mode</span>
                      </div>```
      1 Reply Last reply Reply Quote 2
      • B Offline
        Bangee Module Developer
        last edited by Dec 18, 2016, 5:59 PM

        nice work! :-)

        1 Reply Last reply Reply Quote 1
        • N Offline
          nobita @dinkybluebug245
          last edited by Jan 5, 2017, 3:55 AM

          @dinkybluebug245 , I Would like to know what is your forecast weather module? It not like from openweathermap.org , Thanks so much your kinds

          1 Reply Last reply Reply Quote 0
          • Y Offline
            yawns Moderator
            last edited by Jan 5, 2017, 5:07 AM

            According to his config on github he uses MMM-WunderGround

            1 Reply Last reply Reply Quote 1
            • N Offline
              nobita
              last edited by Jan 5, 2017, 7:31 AM

              How to Build frame around MMM-WunderGround and Calendar,Thanks for your help

              Y 1 Reply Last reply Jan 5, 2017, 7:47 AM Reply Quote 0
              • Y Offline
                yawns Moderator @nobita
                last edited by Jan 5, 2017, 7:47 AM

                @nobita
                Please take a look at his css file, escpacially this part:

                .calendar, div#module_2_MMM-WunderGround table.small {
                	background-color: rgba(63, 182, 236, 0.23);
                    border-radius: 10px;
                	padding: 10px;
                	box-shadow: 5px 5px 5px 1px #d3d3d3;
                	
                }
                

                Add these to your custom.css file and play around with it

                J 1 Reply Last reply Feb 22, 2017, 12:41 PM Reply Quote 2
                • L Offline
                  lucallmon
                  last edited by Feb 5, 2017, 8:17 PM

                  Could you please write a more detailed Readme file on how to install and how to make adjustments to MMM-Remote-Control? I’d like to do this for a display in my kitchen as well but I’m a NOOB and some of the stuff you mention just doesn’t make sense to me. Thanks.

                  1 Reply Last reply Reply Quote 1
                  • J Offline
                    johnnyboy @yawns
                    last edited by Feb 22, 2017, 12:41 PM

                    @yawns
                    Cant see picture of his mirror… can you add it again please?

                    Thanks

                    Y 1 Reply Last reply Feb 22, 2017, 8:41 PM Reply Quote 0
                    • Y Offline
                      yawns Moderator @johnnyboy
                      last edited by Feb 22, 2017, 8:41 PM

                      @johnnyboy said in Not really a mirror at all - but is really helpful:

                      @yawns
                      Cant see picture of his mirror… can you add it again please?

                      Thanks

                      Done

                      1 Reply Last reply Reply Quote 1
                      • 1
                      • 2
                      • 3
                      • 2 / 3
                      • 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