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

    Posts

    Recent Best Controversial
    • RE: Is Raspberry Pi 3 Model A+ suitable to run MagicMirror?

      I’m new to MM2.5 and have spent the last week trying to get my MM working on a Model 3-A+. My MM froze repeatedly, especially when trying to add new modules. I found npm-installs to be particularly slow. I finally decided to try my SD card in a 3-B+ and it’s worked much better. Admittedly, I’m new to RPi and MM2.5, but I can’t recommend using a 3-A+ for MM2.5.

      posted in Hardware
      D
      dwburger
    • Associating module output with custom.css

      The CSS 101 post on this forum is an excellent explanation of css techniques and I appreciate the time and effort it took to create it. I’d like to take it one more step (the one I’m currently stuck on) and see if anyone can help me progress. I have some understanding of css and see how the main.css and custom.css files work in MM2.5. What I’m stuck on is associating output from modules bound for the MM screen with identifiers that I can use in the .css files. As a general example, if I take a look at a module and see that there are labels/values created in the .js file, how do I name those labels/values in the .css file so I can change their display appearance? I hope I’m stating that question clearly. Obviously, my Javascript knowledge is limited. Thanks for any pointers or guidance provided.

      posted in Custom CSS
      D
      dwburger
    • RE: MM2.5 slow to PM2 start after changing pi password

      Looks like I should have looked closer to home than all over the web! I watched more closely at the boot-up procedure of my RPi and noticed a FAILED step involving dhcpcd. I looked that up on the web and found that newer distros don’t want you to edit the file /etc/network/interfaces. See this link for more information:

      https://www.raspberrypi.org/forums/viewtopic.php?t=203530

      I followed the directions there and then went back Raspberrypi.org to follow the directions for properly (and easily) setting up my wifi. Once I did all that the dhcpcd error was gone and my MM2.5 reboot issues were resolved.

      Case closed.

      posted in Troubleshooting
      D
      dwburger
    • MM2.5 slow to PM2 start after changing pi password

      I’ve been working on my MM2.5 for a couple weeks getting it just the way I want it and was all done when I decided I’d better change the default pi password. I did so and, now, it takes about 3 minutes after a reboot for the MM2.5 screen to appear. I’ve searched high and low for a solution without success. Can anyone point me in the right direction??? I’m using a RPi 3 A+ headless. I use Notepad++ to edit MM2.5 files and then issue a “sudo reboot” via Putty to assess the changes. The reboot gets back to the GUI fairly quickly (normal time), but stays there for a couple minutes before MM2.5 starts up using pm2. Can anyone point me to a solution??? Thanks!

      posted in Troubleshooting
      D
      dwburger
    • RE: Rude Module Developers

      I stumbled onto MM2.5 10 days ago with little background in JS. I’ve had a blast getting my mirror set-up and am in awe of its capabilities and the developers contributing time and energy to this FREE project. Complaining about anything just seems misplaced to me. Instead, dig in a little and “learn the ropes”. Don’t know if I’ll dig in myself, but it sure looks like fun!

      posted in General Discussion
      D
      dwburger
    • RE: Send notice text to MM2.5

      @dwburger I found MMM-PushBulletNotifications that looks like it will do what I need. I’m going to pursue that. Just for my own education though, below is my current config.js file with my attempt to get a notice (e.g. “Out of the office”) posted onto my MM2.5. When I edit this file with a new “compliment” and save the file to my MM2.5, the new text doesn’t appear. Maybe someone (everyone?) can spot the problem??? Thanks!

      /* Magic Mirror Config Sample
      *

      • By Michael Teeuw http://michaelteeuw.nl
      • MIT Licensed.
      • For more information how you can configurate this file
      • See https://github.com/MichMich/MagicMirror#configuration

      */

      var config = {
      address: “localhost”, // Address to listen on, can be:
      // - “localhost”, “127.0.0.1”, “::1” to listen on loopback interface
      // - another specific IPv4/6 to listen on a specific interface
      // - “”, “0.0.0.0”, “::” to listen on any interface
      // Default, when address config is left out, is “localhost”
      port: 8080,
      ipWhitelist: [“127.0.0.1”, “::ffff:127.0.0.1”, “::1”], // Set [] to allow all IP addresses
      // or add a specific IPv4 of 192.168.1.5 :
      // [“127.0.0.1”, “::ffff:127.0.0.1”, “::1”, “::ffff:192.168.1.5”],
      // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
      // [“127.0.0.1”, “::ffff:127.0.0.1”, “::1”, “::ffff:192.168.3.0/28”],

      language: "en",
      timeFormat: 12,
      units: "imperial",
      
      modules: [
      	{
      		module: "alert",
      	},
      	{
      		module: "updatenotification",
      		position: "top_bar"
      	},
      	{
      		module: "clock",
      		position: "top_left"
      	},
      
      	{
      		module: 'compliments',
      		position: 'middle_center',
      		config: {
      			updateInterval: 1000,
      			compliments: {
      				anytime: [
      					"Out of the office"
      					]
      				}
      		}
      	},
      ]
      

      };

      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== “undefined”) {module.exports = config;}

      posted in Requests
      D
      dwburger
    • Send notice text to MM2.5

      I’m looking for a module that will let me send a short notices to my MM2.5 screen. The one sent will remain on the screen until I send a new notice. I’ve tried editing the compliments in the config.js file, but they don’t update even with an updateInterval of 3000. I don’t know why that doesn’t work. However, I’d rather be able to send the text to the MM2.5 screen some other way (e.g. smartphone text???). I’ve read through all the existing modules and didn’t find one that will do this. Maybe I missed one or maybe someone has a better idea of how to implement this capability??? Thanks for any guidance?

      Dave

      posted in Requests real-time notice module
      D
      dwburger
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 8 / 8