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

    Topics

    • M

      [MMM-Remote-Control] Cannot GET /remote.html

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Troubleshooting
      13
      0 Votes
      13 Posts
      4k Views
      K
      @sdetweil Yup, that’s what I have - sample of config here: let config = { address: "0.0.0.0", // 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 or empty, is "localhost" port: 8080, basePath: "/", // The URL path where MagicMirror² is hosted. If you are using a Reverse proxy // you must set the sub path here. basePath must end with a / ipWhitelist: [], // 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"],
    • M

      change pages using webhook (POST or GET)?

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Troubleshooting
      3
      0 Votes
      3 Posts
      433 Views
      S
      @mvrlogins you can also use my new MMM-CurlToNotification module https://github.com/sdetweil/MMM-CurlToNotification
    • M

      Monitor not awaking from sleep

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Troubleshooting
      4
      0 Votes
      4 Posts
      628 Views
      S
      @mvrlogins I had to add code to my module, that started a 14 minute timer on entering sleep mode. if motion happened before the timer expired the timer was stopped. if the timer expired, I set a variable and then started the wake up routine. during the wakeup, if the variable was set is started a second timer for 1 second when that second timer expired I cleared the variable and then started the sleep routine again… repeat as needed. causes a short flash every 14 minutes, but mostly this happens at night, when u are sleeping anyhow. energy star compliance requires power off (or low power suspend mode) after 15 minutes of no use.
    • M

      How to show actual times for todays events?

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Troubleshooting
      4
      0 Votes
      4 Posts
      946 Views
      S
      @mvrlogins the garbage day stuff is a diff module the cal shows today(relative) and time
    • M

      Not a mirror - a 27" Dell Monitor on the wall in the kitchen

      Watching Ignoring Scheduled Pinned Locked Moved Show your Mirror
      4
      1
      2 Votes
      4 Posts
      2k Views
      R
      Hah I bought 5x of these monitors for work. They shipped me 6…Thinking about using the spare one to do this exact this. (At 80$ A piece on sale couldn’t beat it)
    • M

      Module to display Tesla car information

      Watching Ignoring Scheduled Pinned Locked Moved Requests
      1
      0 Votes
      1 Posts
      1k Views
      M
      Tesla have an API for their cars - can be used to access info about the car and to set/start functions in the car. Here is a thorough description of the what the API can do - https://timdorr.docs.apiary.io/# My programming skills are not good enought to write a module to use that APi to display information about the car. A module that displayed lock status, location, charge level, location… would be very nice. I presume it would be quite trivial for a good programmer. The Nest API used for the NEST module seems quite similar. Cheers
    • M

      MMM-Traffic not hiding itself out of hours

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      2
      0 Votes
      2 Posts
      2k Views
      I
      Install MMM-ModuleScheduler : https://github.com/ianperrin/MMM-ModuleScheduler and put this text in your Config.JS : { module: ‘MMM-ModuleScheduler’, config: { // SHOW MODULES WITH THE CLASS ‘daytime_scheduler’ AT 05:00 AND HIDE AT 08:00 EVERY DAY global_schedule: {from: ‘0 5 * * *’, to: ‘0 8 * * *’, groupClass: ‘MMM-Traffic’}, } },
    • 1 / 1