A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Subcategories

  • /etc/udev/rules.d/backlight-permissions.rules crashes the command line

    1
    0 Votes
    1 Posts
    3k Views
    E

    I tried installing this: https://github.com/mjtice/MMM-Screendimmer but when I tried editing /etc/udev/rules.d/backlight-permissions.rules, the command line in putty crashed. Now the 7 inch Raspberry Pi display is booted up but it keeps showing the thinking _ repeatedly. I don’t know what do do. It keeps saying that /etc/udev/rules.d/backlight-permissions.rules isn’t found when trying to edit it now.

  • Error when updating and reinstalling 2.19.0

    8
    0 Votes
    8 Posts
    802 Views
    S

    @det just for your info.

    my install script does all the things u did manually…

    apt update/upgrade and install node/npm.

  • 0 Votes
    3 Posts
    393 Views
    P

    Hi,
    thanks for your reply.
    It seems node-ical has an issue with parsing EXDATE Info within the ICS file.

    https://github.com/jens-maus/node-ical/issues/167

    He has the same problem.

  • MMM-Screencast Position

    8
    0 Votes
    8 Posts
    962 Views
    S

    @poucedeleon

    position: 'bottomRight',

    that is a MMM-ScreenCast property… not MagicMirror

    but, yes whatever way the module expects, exact syntax is important, including upper/lower case.

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    30 Views
  • MM Alert Bug? Alerts Overlap

    1
    0 Votes
    1 Posts
    193 Views
    C

    Hello,

    I had not been using my weather app for many months, and I got everything up and running today with the latest version of MM. However, I noticed a possible bug in with MM alerts. Previously, MM would handle multiple alerts gracefully, but today, I got this overlapping, unreadable alert instead:

    screenshot

    Is something wrong with my MM settings/installation/PI, or is this a bug?

    What is the code?
    MMM-Rain-Radar already uses the NWS feed to determine when the radar should be displayed on MM. Their logic is if there is an alert for your state, then display the radar. If not, hide the radar module. I made a few modifications to copy the alert/warning text from NWS into a MM alert and display as MM alert. Neat! Then I stored the alert in an array. For each NWS feed check, it searches for any alerts not in the array. If it finds any, it displays them on MM as an alert, and adds the alert(s) to the array. Once there are no more active weather alerts on NWS, the array clears, and the radar stops displaying. Anyway, it’s a cool little hack to mmm-rain-radar, but yeah, it’s not useful if I can’t read the alerts on my MM. :)

    PS. I have a touchscreen so I just touch the alert to make it go away. I also put in a timeout so if I am away for for a long time, the alert will terminate after a few hours.

    PSS. I changed the code to do notifications, and it works beautifully. So it’s only the alerts that display incorrectly.

  • Calendar: Repeating events with time are not displayed

    Unsolved
    2
    0 Votes
    2 Posts
    383 Views
  • Alert module no longer accepts HTML for notifications

    2
    0 Votes
    2 Posts
    308 Views
    strawberry 3.141S

    This is most likely caused by my transformation of the module from plain HTML to nunjuck templates.

    I suggest to open a Github issue for this in the repository https://github.com/MichMich/MagicMirror/issues/new with all necessary information.

    It would also be interesting there which module is trying to send alerts in HTML.

  • 0 Votes
    9 Posts
    2k Views
    M

    @sdetweil thanks!! All works fine now. :clapping_hands:

  • Weather not displaying envcanada provider

    14
    0 Votes
    14 Posts
    2k Views
    karsten13K

    found a solution meanwhile, will provide a PR in the github repo

  • Calendar error ???

    5
    0 Votes
    5 Posts
    569 Views
    AssassinsA

    @sdetweil
    fullDayEventDateFormat:
    work now, thanks

  • Problem whit MMM-PIE-Sensor modules

    5
    0 Votes
    5 Posts
    645 Views
    J

    @bugsounet said in Problem whit MMM-PIE-Sensor modules:

    node -v
    pi@raspberrypi:~/MagicMirror $ node -v
    v16.13.1

    It works now, thank you :-)

  • 0 Votes
    8 Posts
    598 Views
    S

    @rustyknight i found the problem in the calendar module a while back #2632) and have submitted a fix for the next release, Jan 1.

    https://github.com/MichMich/MagicMirror/pull/2748/

    which hasbeen accepted and merged…

    if u want to test it now, you can do this
    https://forum.magicmirror.builders/topic/14327/testing-new-fixes-or-solving-current-problems-with-next-release-code

  • Crontab to Restart Magic Mirror does not work

    11
    0 Votes
    11 Posts
    2k Views
    S

    @desert-rat sorry. no idea. my info is gathered over 20+ years

    there are online linux courses, but I don’t know where they start, or how deep they go, how fast.

    I have a near photographic memory which is a blessing and a curse…

  • clock module shows 1 week wrong. think it uses calendar for 2020

    2
    0 Votes
    2 Posts
    292 Views
    S

    @paarak I would open an issue in the MagicMirror GitHub repo.

    mm clock uses the moment() library to get this value

  • Updated to 2.17 but MM not launching

    28
    0 Votes
    28 Posts
    4k Views
    StoffbeuteluweS

    @sdetweil OK thank you very much Sam……but it works fine

  • No JavaScript experience - Config.js not working

    16
    0 Votes
    16 Posts
    2k Views
    S

    @olesoncrypto yes, that will get you

    general rules for config.js

    the thing to the left of : does not need quotes for the thing to the right of : if it is a number (9, -1.234) or true/false , no quotes if it contains a letter 12ff234, bob, then needs quotes, single or double doesn't matter as long as they are the same start and end every { needs a matching } every [ needs a matching ] [] is a list [ 1,2,3,4] or [ first,second,third] {} is a structure/object with name/value pairs { x: value, y: othervalue } u can write lists and objects all on one line (what a pain) or across multiple lines... (much more readable) BUT, you STILL need the commas between items in either if u get an error, unexpected token, 99% of the time, u forgot a trailing comma on the line ABOVE the one reported (error on line 45, look at line 44) a good debug process is to join the list or object to a single line in your editor, and get the , between the items, then split it again after each comma... so u have a separate item on each line.
  • MMM-RTSP stopped working on 2.17...help!

    5
    0 Votes
    5 Posts
    708 Views
    swvalentiS

    @sdetweil SOLVED you are the man! Thank you kindly Sam

  • 0 Votes
    5 Posts
    348 Views
    B

    @sdetweil
    It did the job. Had two more Errors with modules:
    “has-binary2”
    “after”
    But I could install them with npm install.

    Thank you very much!

  • Stream Mjpeg-Cam?

    1
    0 Votes
    1 Posts
    284 Views
    O

    Hi,
    i currently using MMM-Motioneye to stream from a Motioneye stream (mjpeg).

    Unfortunatly sometime its not properly loaded on start (some “broken” icon is shown). But after some hours, the module didint show up anthing. There is the option via http-request to show the stream… if this was hidden. But at that moment- its not showing anything.

    I switched to MMM-RemoteControl to hide/ show the module. But like i described- it stops working after some time.

    WIth that experience- i want to switch to another mudule. Any suggestions?