A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • FYI new weather_plus onecall module

    17
    0 Votes
    17 Posts
    3k Views
    S
    @hango O.K. Thanks for the explanation. Cheers
  • i want to add phython code in 'MMM-Facial-Recognition-OCV3'

    4
    0 Votes
    4 Posts
    547 Views
    S
    1st, please use code block tags around code… mark the text and hit the button above the editor that looks like </> i will fix one, u fix the others… now, I’m not sure that this code does… you cannot manipulate (change) the UI/webpage with python in MagicMirror… you can send info to a node_helper spawn routine that can send info onto the module, which can manipulate (change) the UI/webpage the module u are using has not been updated in 3 years… https://github.com/nischi/MMM-Face-Reco-DNN, HAS been updated recently, and u might get help by posting an issue to its repo the module u are using, launches a python script in the background and checks for responses pyshell.on('message', function (message) { if (message.hasOwnProperty('status')){ console.log("[" + self.name + "] " + message.status); } if (message.hasOwnProperty('login')){ console.log("[" + self.name + "] " + "User " + self.config.users[message.login.user - 1] + " with confidence " + message.login.confidence + " logged in."); self.sendSocketNotification('user', {action: "login", user: message.login.user - 1, confidence: message.login.confidence}); } if (message.hasOwnProperty('logout')){ console.log("[" + self.name + "] " + "User " + self.config.users[message.logout.user - 1] + " logged out."); self.sendSocketNotification('user', {action: "logout", user: message.logout.user - 1}); } }); and the DNN does similar self.pyshell.on('message', function(message) { // A status message has received and will log if (message.hasOwnProperty('status')) { console.log('[' + self.name + '] ' + message.status); } // Somebody new are in front of the camera, send it back to the Magic Mirror Module if (message.hasOwnProperty('login')) { only checking for login and logout
  • mvgmunich: undefined result

    7
    0 Votes
    7 Posts
    1k Views
    S
    @andyyy said in mvgmunich: undefined result: Browser Error: { “isTrusted”: true yeh, when there are errors, it gets harder to trap them… but u found the cause /mvgmunich.js (159) looks like the last change was to fix a similar problem, but it was 14 months ago… so I don’t know if the author is responding to issues…
  • I need help with the software

    2
    0 Votes
    2 Posts
    265 Views
    S
    @ethanatesand ok… not sure what part of the process u have trouble with… use my automated install script… remove the existing MM folder (rename it maybe) see https://github.com/sdetweil/MagicMirror_scripts for installing modules, etc, see the two links in my signature below
  • 0 Votes
    11 Posts
    5k Views
    I
    @thgmirror 💡💡💡👍🙏
  • MMM-Fitbit2 PythonShell is not a constructor

    14
    0 Votes
    14 Posts
    5k Views
    S
    @vizulize yeh, i don’t know whay there is a python_shell lib… as exec and spawn are so easy…
  • MagicMirror restarts all the time

    11
    0 Votes
    11 Posts
    2k Views
    L
    @sdetweil I really don´t know what was wrong. Now I´ve made a new installation, copied my old config.js and it works. Thanks for your help.
  • Calendar was working now shows "no upcoming..."

    3
    0 Votes
    3 Posts
    432 Views
    A
    @sdetweil I was pulling it from our school’s website. It is a public .ical calendar.
  • Error: MagicMirror will not quite

    2
    0 Votes
    2 Posts
    555 Views
    S
    @e199504 did u say yes to pm2? then pm2 is already running mm. do pm2 status then pm2 stop all, or 0, or the name shown in the pm2 status command output
  • npm install stuck

    2
    0 Votes
    2 Posts
    713 Views
    Mykle1M
    @e199504 Personally, I would use the install script that was created by, and maintained by, @sdetweil. I do a good amount of installations for one reason or another and it’s my go-to installation tool. If you are interested: https://github.com/sdetweil/MagicMirror_scripts
  • Weather API returns 401 error

    3
    0 Votes
    3 Posts
    703 Views
    O
    @sdetweil yeah My bad I only setup one of the configs not both ahah noobie mistake.
  • Weather Module LocationID Error

    4
    0 Votes
    4 Posts
    723 Views
    S
    @stardyze ok?
  • magicmirror is displayed too big /large

    4
    2
    0 Votes
    4 Posts
    1k Views
    S
    @aboatdev finding the right keystroke is a pain… glad u got it working
  • Hello-Lucy sometimes not working

    6
    0 Votes
    6 Posts
    1k Views
    S
    @varad-wattamwar i posted in your github issue, you determined it was a dialect problem and I gave you options for trying to resolve it just as Mykle mentioned, posting in multiple places does not make an answer appear faster
  • Hello-Lucy installation troubles

    Unsolved
    31
    0 Votes
    31 Posts
    12k Views
    S
    @mykle1 someone else in India having trouble, add the debug:true, option to the Lucy config:{} section in config.js and then while running examing the console where u start MM, either npm start or pm2 (pm2 logs --lines=100) as the voice reco receiver logs what it (thinks it) heard
  • MMM-Carousel broken?

    4
    0 Votes
    4 Posts
    772 Views
    J
    Fixed! Turns out (at least for me) “MMM-YT-SubCount” is broken. I noticed sub counts were not updating on this plugin, only updated on a MM restart. I swapped it out for MMM-YouTubeChannelStats which works perfectly, and Carousel started working normally after that. Hope this helps someone
  • calendar shading

    3
    1
    0 Votes
    3 Posts
    733 Views
    lavolp3L
    @george Sorry George but that’s not the appropriate way to do it. Doing that you will mess things up as soon as you want to update the module. Every css-thing you want to change, you transfer to custom.css and make your changes there. custom.css always overwrites entries in the module css files, so it takes precedence. Also I think the calendar module is meant here and not MMM-MyCalendar. @Sceetch congrats to the vaccination :-). Also, move into the modules/default/calendar folder, look into the calendar.css for any time entries. You will find: .calendar .time { padding-left: 30px; text-align: right; vertical-align: top; } Now edit custom.css and add .calendar .time { } Every entry you make here adds to the above from calendar.css. Try to play with this, e.g. by putting in font-wight: bold
  • PIR Sensor issues_Unknown

    2
    0 Votes
    2 Posts
    457 Views
    S
    @nneuland u need to find out if your monitor will accept cec commands to turn off it’s power, instead of turning off the hdmi port. search google for cec-client none of mine support cec commands. if you use an ssh connection to the pi from your other machine you can turn the hdmi port back on without rebooting
  • How to interact with the news module?

    8
    0 Votes
    8 Posts
    3k Views
    clhe0423C
    Does the interaction with the news module only work for this MMM-Gesture module? As I read through the description, yes I am looking for a module that would allow me to interact with the news module, meaning if I press the “read more” button it would bring me to another page or use the Iframe to show the news. I have an IR screen so I can touch the screen using that frame, but the hardware required in this Gesture module requires different sensors?
  • absolute date in calendar module

    19
    0 Votes
    19 Posts
    16k Views
    uros76U
    @pablo_z said in absolute date in calendar module: @qqqqqqqq You must use: timeFormat: ‘absolute’, getRelative: 0, urgency: 0, in the config.js I wanted the same, to have just dates of events shown. This helped me, thanks.