A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • mmm assistant cracking sound usb headset

    1
    0 Votes
    1 Posts
    802 Views
    S
    Hello Experts after a lot of try i was finally able to install mmm assitant on my mirror but there is a weird issue i am facing with my usb pnp headset that there is cracking sound coming after asking a question. any one here facing same issue ? any help is much appreciated thank you
  • How to make MM scrollable when connecting via remote client?

    3
    0 Votes
    3 Posts
    2k Views
    E
    @yawns Thanks, that did it. :) The webkit stuff seem quite experimental and can probably be ignored: https://developer.mozilla.org/en-US/docs/Web/CSS/::-webkit-scrollbar https://en.wikipedia.org/wiki/List_of_web_browsers#WebKit-based
  • MMM-PIR-Sensor (PaViRo) +HC SR501 - Setting parameters?

    1
    0 Votes
    1 Posts
    2k Views
    Robert_KR
    So I made my first MagicMirror. I’ve included an HC SR501 pir-sensor. This sensor has two potential meters to alter the sensitivity and alter the amount of time the output stays high. Having set the sensibility at “medium”, and the output time at “short”. The short has been chosen to see if the sensor works and seems to give less failures. The off delay time will be set in the module config. I’ve tested the sensor at several ways. The RPI receives it’s signal and with gpio readall It shows to be at BCM 22, GPIO.3 Physical 15. Using the MMM-PIR-Sensor (PaViRo) module it “works”. Blocking the sensor and wait for the configured 30 seconds the screen goes off. Removing the sensor blockage, the screen goes on. I’ve altered the delay time from 30 seconds to 5 minutes (note time is in milliseconds) as below: { module: 'MMM-PIR-Sensor', config: { sensorPIN: 22, powerSaving: true, offDelay: 300000, //in miliseconden } }, the 5 minutes is because I want the mirror to go off when I’m not at home or a sleep 😉 Having set this it looked like it worked, but after a day the mirror started to misbehave. Go off when I’m walking in front of it, or even worse not go on anymore when standing, waving, dancing in front of it… A gpio readall shows the PIR still works and a sudo reboot solves the problem for a couple of hours. So I was wondering how do you guys set all the parameters as we have three variables. PIR sensor sensitivity, the PIR sensor output time and the module offDelay. And what can cause this misbehavior? Thanks in advance, Regards Robert
  • MMM-Newsfeed is only working for a day

    8
    0 Votes
    8 Posts
    3k Views
    M
    @all Seems like i found the problem why some modules stopped working. I revisited my MM configuration and noticed i had lost my “keep WiFi active” configuration… I opened /etc/network/interfaces and put in the missing “wireless-power off”. More infos here: https://forum.magicmirror.builders/topic/236/complete-setup-tutorial/6 (see chapter “Installing MagicMirror - Step 4”)
  • MMM-Assistant Error Node module version

    2
    0 Votes
    2 Posts
    1k Views
    S
    hi, got the same error here today. did you figure out how to solve this? Thanks
  • API requests stop firing after a couple hours for custom module

    7
    0 Votes
    7 Posts
    3k Views
    cowboysdudeC
    You could also do a console.log to see if you’re getting regular outputs after your request…
  • Default Calender-absolute Date

    14
    0 Votes
    14 Posts
    12k Views
    P
    I just checked my module, I have timeFormat: ‘absolute’, So not: “absolute” I hope this makes the difference! Peter
  • Button

    23
    0 Votes
    23 Posts
    25k Views
    F
    Dear community, how could i implement following scenario. Connect a button to the MM and switch monitor on and off with it?
  • Is node_helper really required?

    4
    0 Votes
    4 Posts
    3k Views
    E
    @strawberry-3.141 Oh!? That is funny, because I removed it, and there is no change in anything, module ran fine without it. Perhaps because I’m not using most of the content from that file, while the rest is already defined?
  • 0 Votes
    4 Posts
    5k Views
    gauravsaccG
    @Raddy said in Possible Issue: MMM-GoogleAssistant with recent Google Assistant SDK update: d method f just an update. I’ve updated the MMM-GoogleAssistant module to work with the new SDK :)
  • Volume issue on MMM-GoogleAssistant module

    5
    0 Votes
    5 Posts
    3k Views
    C
    @aro28 That didn’t work on mine. I suspect you would need to go into alsamixer, locate your playback device’s configuration and adjust the default volume there.
  • Voice control question

    14
    0 Votes
    14 Posts
    11k Views
    M
    @Krato5 Open for anything I have enough stuff to do on my smarthome/magic mirror so always happy about any help ;)
  • Translation "After one month" in Calendar Module

    15
    0 Votes
    15 Posts
    9k Views
    Y
    @MM-Hans said in Translation “After one month” in Calendar Module: @yawns said in Translation “After one month” in Calendar Module: vendor/node_modules/moment/min/ Hi Stefan. You almost need to be a digital detective to locate that phrases ;-) But finally the issue is solved, thanks for your assistance! You are welcome!
  • GPIO in MMM: ModuleToggle with MMM-Buttons is randomly working

    1
    0 Votes
    1 Posts
    1k Views
    G
    Issue comes from the buttons requiring an insane amount of presses to trigger, sometimes never triggering, and on rare occasions 2 of the 4 will work perfectly. The goal was to have an easy way to have buttons, in this case 4, and each have their certain modules. Using code from http://razzpisampler.oreilly.com/ch07.html import RPi.GPIO as GPIO import time GPIO.setmode(GPIO.BCM) GPIO.setup(18, GPIO.IN, pull_up_down=GPIO.PUD_UP) while True: input_state = GPIO.input(18) if input_state == False: print('Button Pressed') time.sleep(0.2) I tested each one button with their own GPIO and each worked every time, so with this knowledge i know the buttons and the wiring is right. The code for the config is: modules: [ { module: 'MMM-ModuleToggle', config: { hide: ["clock"] } }, { module: 'MMM-Buttons', config: { buttons: [ { pin: 23, name: "Button_One", shortPress: { notification: "MODULE_TOGGLE", payload: {hide: [], show: ["calendar", "clock"], toggle:[]} }, longPress: undefined }, { pin: 13, name: "Button_Two", shortPress: { notification: "MODULE_TOGGLE", payload: {hide: ["calendar", "clock"], show: [], toggle:[]} }, longPress: undefined } ] } As stated they work, but at very random time. Im wondering if im suppose to like preload the knowledge to use GPIO ahead of the booting of the actual Magic Mirror program, or something like, or am i missing a step. Thank you in advance.
  • can't get the webcam to work

    6
    0 Votes
    6 Posts
    6k Views
    N
    @xela That’s a whitelist issue; the ipWhiteList controls which computers can connect to the MM server. address controls what the electron instance connects to. Have a look here for @mochman’s ipWhiteList config walkthrough. If you’re on an IPv6 network, it’s not altogether intuitive for those of us who grew accustomed to IPv4.
  • MMM-Remote-Control show error on start

    5
    0 Votes
    5 Posts
    3k Views
    J
    If it is in this line, then something is wrong when I get the fetch url. Maybe a module without any remote, but it somehow it not caught in the if statemate to catch errors? Maybe the result[0].refs does not necessarily have a fetch url?
  • 0 Votes
    7 Posts
    5k Views
    E
    @ninjabreadman Thank you very much for trying to help. But I’m pretty sure I tried that as well…at some point, giving me a “double” path. (Perhaps a browser cache issue?). Anyway, this is resolved, and I have a new problem of a completely different sort in this thread.
  • Google Assistant won't register.

    2
    0 Votes
    2 Posts
    2k Views
    C
    @KRegan There are a fair number of missing details from the 3rd Party Module instructions, especially when it comes to registering the device. I ended up jumping over here: https://developers.google.com/assistant/sdk/guides/library/python/ and just going through the Google instructions in detail. Once you have the demo software working (audio only, without MM integration), it was fairly easy to sew them together and get it working on the mirror as well. I used my Jabraspeak USB speakerphone, which registered as card 1, device 0 on both the speaker and mic. Have a scratch pad of some sort handy (OneNote, Notepad, etc) to track the various keys you will generate along the way. Once you get everything onboard, the sequence is boot the Pi (I have pm2 set to autostart the Mirror), connect vis SSH then start the virtual environment (source env/bin/activate), drill down to the pi folder (cd MagicMirror/modules/MMM-GoogleAssistant/pi) and start the assistant.py file (python3 assistant.py). I took the better part of a weekend. ymmv.
  • Magic Mirror Modules Not Working

    9
    0 Votes
    9 Posts
    4k Views
    K
    @ninjabreadman https://github.com/ronny3050/phone-notification-mirror I used this module for push notification.
  • IFrame

    4
    -1 Votes
    4 Posts
    3k Views
    E
    @maxbachmann What does your browser’s Developer Tools log say?