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

    Posts

    Recent Best Controversial
    • RE: MMM-MotionEye - surveillance video stream on your mirror!

      @emos you need to add it in to MotionEyeOS. So it knows about it. I have 3 cameras in the same way. You can add any “network-camera”.
      rtsp://yourcam:port/whatever-format in the “add” dialog in MotionEyeOS. :)

      posted in Utilities
      SnilleS
      Snille
    • RE: MMM-MotionEye - surveillance video stream on your mirror!

      Hi @emos I’m also using different cameras from the same MotionEye install.
      I have my cameras set on different ports like this.
      http://MotionEyeOS:8081
      http://MotionEyeOS:8082
      http://MotionEyeOS:8083
      I think that the default way…
      Then you have the motiontrigger url like this in MotionEyeOS/Camera (for example):
      http://MagicMirror:8080/motioneye/1
      http://MagicMirror:8080/motioneye/2
      http://MagicMirror:8080/motioneye/3

      That’s it. :)

      posted in Utilities
      SnilleS
      Snille
    • RE: Withings

      Hi @aluini, is your module still working correctly? I’m only getting the weight. :)
      I have an Body Cardio Scale, do I have to define this somewhere?

      Thanks!

      posted in Requests
      SnilleS
      Snille
    • RE: My First Magic Mirror

      Looks great! Good reflection and see-through.
      If you want to share… :)
      What modules are you using and what customisation have you done?
      I can see the colours on the calendar appointments, how did you manage that?

      posted in Show your Mirror
      SnilleS
      Snille
    • MMM-Modulebar - A module that adds touch buttons for showing/hiding other modules.

      Description:

      This Module adds a touch menu to hide / show other the defined (in the config.js) modules.

      Screenshots:

      Module with symbols only in row mode:
      symbols row mode
      Module with symbols only in column mode:
      symbols column mode
      Module with symbols and text in column mode:
      symbols and text in column mode
      Module with symbols and text in row mode:
      symbols and text in row mode
      This is my own mirrors view (Bottom Bar) using some addition in the custom.css see below.
      my special

      Download:

      [card:Snille/MMM-Modulebar]

      Custom-CSS

      Here is my CSS settings for the module that I have added to my custom.css to give it the extra special look. :)

      /* MMM-Modulebar ------------------------------------*/
      .modulebar-button {
        margin: 1px;
        padding: 1px 1px;
        border: 2px solid #fff; 
        background-color: #fff;
        color: #000;
        border-radius: 0px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
      }
      .modulebar-picture {
        margin: 0px 0px;
        border-radius: 50%;
      }
      .modulebar-menu {
        align-items: flex-start;
      }
      /*****************************************************/
      

      Version 0.2

      • Had to change the button array format a bit. Make sure to update your config to the new “standard”.
        The reason for the change where to be able control each module separately even if it is the same module multiple times. :)

      Version 0.1

      • Initial release.
      posted in Utilities
      SnilleS
      Snille
    • RE: When weather updates module unhides...

      This is solved. It was actually the Profile-Switcher that created the problem. :)

      posted in Troubleshooting
      SnilleS
      Snille
    • RE: How do you develop locally and push to the Pi?

      I’m using Expandrive for lot’s of different connections to all kinds of systems. It support connecting a drive (in Windows) using SSH for example. So you can have full access to your RPi directly in windows. Very handy. However it’s not completely free ($50) for a single licence.
      http://www.expandrive.com/

      Then you don’t have to mess around with CIFS or Samba… ;)

      posted in Troubleshooting
      SnilleS
      Snille
    • RE: 1 old noob + 1 rPi = I can't believe I did it! (revisited)

      Great work! Looking good! I bet your kid will be impressed! I know I would if my father took on a project like yours! :)

      posted in Show your Mirror
      SnilleS
      Snille
    • RE: How to make updateDom actually refresh <img src...>?

      Oh, sorry, I completely forgot about this topic. Good that you solved it. :)

      posted in Development
      SnilleS
      Snille
    • RE: MMM-Wunderground Add wind forecast

      Looks great, I’m switching to this module now.
      Good work!

      posted in Requests
      SnilleS
      Snille
    • Build on Benja...

      Hi all,
      I’m currently working on a Digital Photo Frame. When looking for a good place to start I found this: https://benja.io
      It’s basically ARCH with only Electron running.
      Not only that, it’s fully Hardware accelerated! :)

      I thought, maybe the MagicMirror² can use this as a base instead of a Raspbian Jessie (Lite) installation as it is today. Maybe you guys already knew about this. But in case you didn’t I just wanted to let you know. :)

      I’m also building a MM of course. :)

      Best regards Erik

      posted in General Discussion
      SnilleS
      Snille
    • RE: [MMM-PlexNowPlaying] - Display current song played by PlexMediaServer

      Hi @youse, Thank you! Adding your module now. :)

      posted in Entertainment
      SnilleS
      Snille
    • RE: How to make updateDom actually refresh <img src...>?

      Hi @matthewj
      You can use javascript to make the image URL unique all the time thought adding a “number” (in this case just a simple timecode). :)

      OBS: I had to add spaces after the " < " before the end " > ".
      Just remove them when you use it. :)

      Otherwise it would not show.

      < img id="graph" alt="" src="https://plot.ly/~myPlotlyAccount/myGraph.png" />
      
      < script language="javascript" type="text/javascript" >
        var d = new Date(); 
        document.getElementById("graph").src = "https://plot.ly/~myPlotlyAccount/myGraph.png=" + d.getTime();
      < /script >
      

      Good luck. :)

      posted in Development
      SnilleS
      Snille
    • RE: MMM-MotionEye - surveillance video stream on your mirror!

      @Cato Great! Thanks for fixing my mistakes. :)

      posted in Utilities
      SnilleS
      Snille
    • Splitting zone...

      Hi all, I’m trying to save space on my mirror to be.
      I’m thinking if it would be possible to make a module where you can “split” a zone. Or rather arrange other modules in another way in a zone. As it is now you can basically only decide what module is on top and the order the modules are added under each other in config. I would like to be able to put modules beside each other as well. Here is an example:
      This is my current left top corner:
      0_1485642702555_Current.png
      This is how I would like it to be:
      0_1485642721105_Tobe.png
      So, I want to move the “moon” to beside the clock, but still be in the top_left.
      Is this possible?

      Thank you all for this great project! :)

      posted in General Discussion
      SnilleS
      Snille
    • RE: MMM-MotionEye - surveillance video stream on your mirror!

      Fixed. Just sent you a PR. :)
      Check it, I’m fairly new to Node.js so it may not be the best solution. :)

      posted in Utilities
      SnilleS
      Snille
    • RE: MMM-MotionEye - surveillance video stream on your mirror!

      Hi again, It would be cool to be able to hide the camera manually… For example visit another link… Say http://MagicMirror:8080/motioneye/1/hide
      Right? :)

      posted in Utilities
      SnilleS
      Snille
    • RE: Looking for Beta-testers!

      Working. :)

      posted in MagicMirror
      SnilleS
      Snille
    • RE: Looking for Beta-testers!

      Hi there, got the same problem… It’s time for bed anyway. :)

      posted in MagicMirror
      SnilleS
      Snille
    • MMM-Sonos - To show what your SONOS is playing.

      Description:

      This is an modification of of @Vaggan MagicMirror-SonosModule and @CFenner MagicMirror-SonosModule. It was modified to get some enhancements in visualisation and configuration. Also the module hides itself when not playing now.

      Note from me: I’m new to the MagicMirror world and Node.js, this is my first attempt to modify a module. There are probably lot’s of things that could have been done better. :)

      Screenshots:

      When starting the Mirror:
      0_1485553745853_Sonos-Loading.png
      Module on the Left side of the Mirror:
      0_1485553829281_Sonos-Left.png
      Module in the Center of the Mirror:
      0_1485553864923_Sonos-Center.png
      Module in the Center of the Mirror playing in 3 different zones:
      0_1485553885826_Sonos-Multizone.png
      Module on the Right side of the Mirror:
      0_1485553912414_Sonos-Right.png
      And, this is my own look on my mirrors (@ top center) using some addition in the custom.css…
      0_1485553948891_Sonos-Custom-CSS.png

      If you want my look on it, use this CSS code in your custom.css.

      /* Sonos --------------------------------------------*/
      .sonos ul .type {
          font-size: 12px;
          padding: 0px 0px;
          line-height: 12px;
          width: 260px;
      }
      .sonos ul .room {
          font-size: 16px;
          padding: 0px 0px;
          line-height: 16px;
          width: 260px;
      }
      .sonos ul .song {
          padding: 0px 0px;
          position: relative;
      }
      .sonos ul .art img {
          height: 60px;
          width: 60px;
          border-radius: 50%;
          margin: 0px 0px;
          border: 2px solid #FFF;
      }
      .sonos ul .name {
          width: 200px;
          font-size: 16px;
          padding: 0px 4px;
          line-height: 16px;
      }
      /*****************************************************/
      

      Download:

      [card:Snille/MMM-Sonos]


      Version 0.1

      • I’m guessing that’s Vaggans version…

      Version 0.2

      • Has to be CFenners version…

      Version 0.3

      • My version… :)
      posted in Entertainment
      SnilleS
      Snille
    • 1 / 1