A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • Ical calender no longer works - randomly just stopped.

    Unsolved
    5
    0 Votes
    5 Posts
    1k Views
    T
    This randomly started working again. So not sure what’s going on with it. I can only think that it was the amount of entries or something it didn’t like when reading.
  • What does this mean?

    Unsolved
    8
    0 Votes
    8 Posts
    944 Views
    S
    @DehJango show me your config… you can send as a private message, please don’t change anything…
  • MM screen doesn't start but can access through web browser

    Unsolved
    6
    0 Votes
    6 Posts
    2k Views
    S
    @DDE12 try this edit js/electron.js and change this , approx line 70 in the develop branch let address = (config.address === void 0) | (config.address === "") ? (config.address = "localhost") : config.address; to this let address = (config.address === void 0) | (config.address === "") | (config.address === "0.0.0.0") ? (config.address = "localhost") : config.address; previous issue, reopened https://github.com/MichMich/MagicMirror/issues/2550
  • pm2 no longer launching MM

    Unsolved
    38
    0 Votes
    38 Posts
    17k Views
    T
    i followed this to get my starting again https://forum.magicmirror.builders/topic/10840/problems-with-starting-pm2-start-mm-sh/7
  • Config template file not exists, no ensubst

    Solved
    8
    0 Votes
    8 Posts
    3k Views
    D
    @sdetweil The temp fix worked. Thank you!
  • MagicMirror doesn't start after updating to 2.23

    Solved
    2
    0 Votes
    2 Posts
    928 Views
    F
    @fribse Ok, that is weird, after doing the force, and waiting for quite a while, it works again??? So I’m changing it to solved, running the update once more, with “force”, made it work
  • Mirror fails to start upon update

    Solved
    5
    0 Votes
    5 Posts
    899 Views
    S
    @nakulbende on the createRequire see https://github.com/MichMich/MagicMirror/issues/2772
  • MESA Loader with fresh install

    Unsolved
    10
    0 Votes
    10 Posts
    1k Views
    S
    @calcio if you used my install script, I create that script ~/MagicMirror/installers/mm.sh
  • MMM-NetworkScanner - ShowDeviceColumns doesn't work

    Unsolved
    1
    0 Votes
    1 Posts
    502 Views
    zdenekZ
    Dears Even I’ve showDeviceColums: true, in config.js, each device is on own row, means no columns. Just in one config I’ve showInNewRow: true, so, I shoudl see only 2 rows any idea, what I did wrong? thanks Zdeněk
  • MMM-WeatherOrNot does not update

    Unsolved
    1
    0 Votes
    1 Posts
    224 Views
    J
    Hi all, I have a problem mmm-weatherornot works well when I start it but it does not update, the temperatures remain as at startup. do you have an idea ? my config.js: { disabled: false, module: ‘MMM-WeatherOrNot’, position: ‘top_right’, config: { location: “champagne-saint-hilaire”, // See instructions locationCode: “46d320d32”, // See instructions languages: “fr”, // See Languages list tempUnits: “C”, // F or C font: “Tahoma”, // See Font list textColor: “#ffffff”, // Hex color codes. htColor: “#ffffff”, // high temp color. Hex color codes. ltColor: “#00dfff”, // low temp color. Hex color codes. sunColor: “#febc2f”, // Hex color codes. moonColor: “#dfdede”, // Hex color codes. cloudColor: “#dfdede”, // Hex color codes. cloudFill: “#1f567c”, // Hex color codes. rainColor: “#93bffe”, // Hex color codes. snowColor: “#dfdede”, // Hex color codes. height: “600px”, // module is responsive to changes width: “600px”, // module is responsive to changes label: “Champagné Saint Hilaire”, // Location seems logical . . days: “5”, // 3, 5 or 7 theme: “Background”, // See Themes list *** theme overrides bgColor. *** bgColor: “#000000”, // theme overrides bgColor. icons: “Climacons Animated”, // Iconvault, Climacons or Climacons Animated animationSpeed: 3000, currentWeather: true, updateInterval: 1 * 60 * 1000, } }, Thanks
  • Install on Windows 10

    Solved
    4
    0 Votes
    4 Posts
    873 Views
    R
    Never mind, I found it :) And it works, thanks again !
  • Problems with AlexaControl

    Unsolved
    3
    0 Votes
    3 Posts
    343 Views
    S
    @oldskoolz rule 1… never change MagicMirror or a module source code, it breaks the ability to update. all config goes in MagicMirror/config/config.js you don’t add devices for pages, all you do is set the number of pages you want to navigate to … pages: 3 this will give you devices for page 1, page 2 and page 3 in the npm start output you should see the number of devices created that you can access via Alexa turn on page 2 as the devices are fake outlets if u want a different voice command, you can use an actual alexa routine select voice go to page 2 action smart home devices page 2 power on alexa does not provide any symbolic replacement functions go to page {n} replace n with a number on execute
  • Problems with modules

    Unsolved
    3
    0 Votes
    3 Posts
    458 Views
    B
    @sdetweil Ok thanks for the answer, I didn’t know that
  • Easy Center Resizing?

    Unsolved
    6
    0 Votes
    6 Posts
    2k Views
    BKeyportB
    @MMRIZE I would love to see it reworked, mostly to add the missing 2 positions. (middle left, middle right)
  • committee update

    Solved
    8
    0 Votes
    8 Posts
    2k Views
    P
    Good morning my mirror works thank you
  • Move middle_center below other regions?

    Solved
    8
    0 Votes
    8 Posts
    2k Views
    S
    @smartroad https://forum.magicmirror.builders/topic/17773/calendar/8?_=1683543891403 that is a copy/paste of a module’s content from the developers window. note that the class=" module and modulename" both occur only on the same element, so using just .modulename will select the same content as using both when there is no space between the selector clause class names, this means BOTH must occur on the same element, and in this case there is only one of those to select. and just as food for thought, it takes a little more cpu cycles to look up TWO things together than just one.
  • MMM-GoogleCalendar Merging Two Shared Calendars

    Solved
    8
    0 Votes
    8 Posts
    2k Views
    J
    All, Got it to work. Thank you for the help with this. I appreciate it.
  • How to add modules. For absolute beginners.

    91
    13 Votes
    91 Posts
    160k Views
    C
    @sdetweil Tnx, that did the trick. I imagine thats been a problem with other modules that I started with. I’ll try the same on them. Cheers!
  • MMM-OpenWeatherForecast No API Key

    Solved
    5
    0 Votes
    5 Posts
    1k Views
    J
    @sdetweil Thanks for the catch. I appreciate it and the tips for future post. First time posting here.
  • MMM-PIR-Sensor-Lite not switching off

    Solved
    11
    0 Votes
    11 Posts
    4k Views
    B
    @djlagaffe - I was able to get it working with xrandr with a small modification to the node_helper.js file. I’ll submit a PR soon.