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

    Posts

    Recent Best Controversial
    • RE: Out of curiousness - what's this error?

      @BKeyport shouldnt need any credentials.

      posted in Troubleshooting
      S
      sdetweil
    • RE: MMM-EasyBack YouTube force video quality

      @Darkmx-6 there is only one install… but two ways to run it…

      just change your mm.sh from

      node serveronly
      to
      npm start

      posted in Troubleshooting
      S
      sdetweil
    • RE: Core News Module: Cycle sources

      @palula this is a volunteer project, with no dedicated development team… SO… if u can/want to… have at it…
      if it works and u want to give it back, you can

      posted in Feature Requests
      S
      sdetweil
    • RE: MMM-EasyBack YouTube force video quality

      @Darkmx-6 what do you mean mirrored?

      you mean split mode, serveronly and then some other browser on a different machine (or same, but different browser)

      i ‘think’ the videos open where the browser is… not where the server is.

      yeh, easyback just opens an iframe (in the browser) and launches youtube there… roughly the same way it works when u launch a video normally

      if (this.config.youTubeID != '') {
      
              var iframe = document.createElement("IFRAME");
              iframe.classList.add("iframe");
              iframe.style = "border: 0 none transparent ";
              iframe.width = this.config.width;
              iframe.height = this.config.height;
              type="text/javascript";
              iframe.src="https://www.youtube.com/embed/" + this.config.youTubeID + "?autoplay=1&loop=1&playlist=" + this.config.youTubeID;
      
              return iframe;
      
      posted in Troubleshooting
      S
      sdetweil
    • RE: MMM-EasyBack YouTube force video quality

      bunch of stuff in google search “youtube playback resolution”

      usually the screen size is 1280/1024 or 1920/1080 (4k is 3840x2160)

      posted in Troubleshooting
      S
      sdetweil
    • RE: Custom.css is not working

      @cookblook I don’t know the answer, but if you use the developers window (ctrl-shift-i), and select the elements tab, you can navigate thru the dom. and on any selected element you will see the style classes used, top to bottom.

      I was just working on this for a style not being applied… darned computers are VERY picky about the spelling!

      I just looked thru the MM code , and custom.css is loaded in the js/loader.js file

                              } else {
                                      // All modules loaded. Load custom.css
                                      // This is done after all the modules so we can
                                      // overwrite all the defined styles.
      
                                      loadFile(config.customCss, function() {
                                              // custom.css loaded. Start all modules.
                                              startModules();
                                      });
      
      posted in Troubleshooting
      S
      sdetweil
    • RE: Column width change help

      @mlcampbe custom.css has been force loaded as the last css file since 2.6 as I recall…

      posted in Custom CSS
      S
      sdetweil
    • RE: Out of curiousness - what's this error?

      @BKeyport The updatenotifications module

      posted in Troubleshooting
      S
      sdetweil
    • RE: Pir Sensor not shutting off screen.

      @tinsebayacc

      I just added some code to my module to handle PIR_SENSOR sending notice of user around…
      so you shouldn’t have to change anything there… well, stop it from turning off the display

      posted in Tutorials
      S
      sdetweil
    • RE: Pir Sensor not shutting off screen.

      @tinsebayacc some devices do not have the ability to turn to back… (none of my TV’s do)…

      I wrote my MMM-SleepWake (on github) module to provide the ability to hide all modules to darken the screen…
      its not off, and at night it has a glow (the backlight)… but its better than nothing…

      i don’t care how you detect motion, camera, pir, wave, …

      when you do, call my provided script with ‘started’, and when the motion ends, call it again with ‘ended’
      see the readme.

      set the “mode” to “hide”
      I use a webcam for motion detection

      posted in Tutorials
      S
      sdetweil
    • 1 / 1