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

    dinkybluebug245

    @dinkybluebug245

    16
    Reputation
    2.4k
    Profile views
    46
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    dinkybluebug245 Unfollow Follow

    Best posts made by dinkybluebug245

    • Not really a mirror at all - but is really helpful

      My MagicMirror isnt a mirror at all - its a display that is on in my kitchen. It has two modes - normal - shown below, which shows calendar, what is currently playing on my Sonos speaker in my kitchen, weather, and headlines.

      0_1479296935770_IMG_4554.JPG

      and also a ‘party’ mode, where all that other info is hidden, and only shows me and my guests what music is playing

      0_1479296979064_IMG_4553.JPG

      Happy to share my custom CSS code with anyone that wants to see this.

      posted in Showcase
      D
      dinkybluebug245
    • RE: Not really a mirror at all - but is really helpful

      thanks - Uploaded the code here.

      https://github.com/dinkybluebug/MMM-CustomCSSv2

      posted in Showcase
      D
      dinkybluebug245
    • RE: Not really a mirror at all - but is really helpful

      @yawns Ive uploaded my version of calendar.js to github. access it here : https://github.com/dinkybluebug/MMM-CustomCSSv2

      It has amended javascript for calendar to show day of week and time.

      posted in Showcase
      D
      dinkybluebug245
    • RE: Not really a mirror at all - but is really helpful

      @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>```
      posted in Showcase
      D
      dinkybluebug245
    • RE: Not really a mirror at all - but is really helpful

      I had installed the remote control module too, and tweaked it slightly, so I can move between Normal and Party mode, instead of using bash scripts via SHH

      0_1479750249211_upload-7516ce5e-a72d-486b-b4ae-75f901144e0c

      posted in Showcase
      D
      dinkybluebug245
    • RE: Not really a mirror at all - but is really helpful

      @MichMich Thanks Michael - Im new to all this - so appreciate your comment

      posted in Showcase
      D
      dinkybluebug245

    Latest posts made by dinkybluebug245

    • RE: refresh mirror completely from command line

      @cowboysdude thanks. Trying to do this remotely though through command prompt/ssh. Any ideas?

      posted in General Discussion
      D
      dinkybluebug245
    • refresh mirror completely from command line

      Ive connected my magic mirror to alexa - where I can change the modules that are displayed. Currently it changes the config file and then stops the mirror, then loads it again.

      Is there a way of refreshing the mirror from the command prompt, which then reloads config.js without quitting and restarting?

      posted in General Discussion
      D
      dinkybluebug245
    • RE: MMM-Todoist - Your todoist tasks on your mirror

      Im having some issues with this module. When I add items to my todoist - it appears in the module, but when I mark them as completed , or they are deleted - the items dont come off the module - unless I add a new item onto the list. At that point, they disappear, and the new item gets added.

      Very odd.

      Ive raised it as an issue here: https://github.com/cbrooker/MMM-Todoist/issues/3

      Any ideas why this might be?

      posted in Productivity
      D
      dinkybluebug245
    • RE: Can't access mirror from external source - IPwhitelist doesnt work

      Thanks. Much appreciated. All sorted.

      posted in Troubleshooting
      D
      dinkybluebug245
    • Can't access mirror from external source - IPwhitelist doesnt work

      Hi,

      I know im probably being dumb on this, but I have upgraded my mirror to 2.1.0, and now I cant access the mirror from my PC using ‘http://192.168.1.xx:8080/’

      Ive added in the following into my config file

      ipWhitelist: [“192.168.1.16”,“::1”], - where ip address shown is my laptop

      but when I try and load mirror on my pc, it says access denied.

      Any ideas what I am doing wrong?

      posted in Troubleshooting
      D
      dinkybluebug245
    • RE: Not really a mirror at all - but is really helpful

      @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>```
      posted in Showcase
      D
      dinkybluebug245
    • RE: Tado module?

      @charliwest Sorry to bombard you with messages - One other update - I noticed that if I restart MagicMirror and heating is munually off - then module just reports at ‘Loading.’ If I turn the heating off when Mirror is running, then the whole thing crashes - clock stops everything

      This just might be my system though. It was working before - very odd

      posted in Requests
      D
      dinkybluebug245
    • RE: Tado module?

      @charliwest when I first set up my mirror I didn’t have a monitor either for the first month. I think I just left it running without a
      Monitor connected and then used another pc on the same network to see output using ipaddressofpi:8080

      posted in Requests
      D
      dinkybluebug245
    • RE: Tado module?

      @charliwest Hi. I’ve updated everything. Home icon looks great. Just tested it and It still doesn’t know how to handle when my heating is Manually off. The module just reports as ‘Loading’

      posted in Requests
      D
      dinkybluebug245
    • RE: Tado module?

      @charliwest hi. Also I noticed that sometimes it doesn’t update. This morning woke up and it was still showing a reading from about 8pm the night before. Not an isolated occasion as it happened before but figured it was a one off. Might be my setup though.

      posted in Requests
      D
      dinkybluebug245