A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • MMM-Strava configuration

    Solved
    4
    0 Votes
    4 Posts
    2k Views
    M
    Solved see module in health section
  • MMM-buttons help/advice to turn multiple modules on/off

    Unsolved
    1
    0 Votes
    1 Posts
    519 Views
    J
    Hi All I want to add the ability to press a button to hide all modules except google photos and vice versa, (working as a digital photo frame instead of a mirror) and I was trying to use the MMM-buttons module to send commands for MMM-Remote-Control (which is working from my browser), however it seems to keep throwing up the error with the usual create a config msg when I have even 1 button enabled. First question is reference my button setup, I currently have 1 button setup in pull_down (as in below pic), it’s setup on pin 24, as in the MMM-buttons example, however I’m now having second thoughts on if this is the right setup? [image: 1573248590675-8b57bf95-1be7-4d77-bba4-3781fb7bff29-image.png] It’s been a while since I did anything with my Pi, so the previous testing of buttons, switches, leds etc I’ve mostly forgotten and I couldn’t find a python script to test the button in pull_down, however I’m pretty sure it’s the config that’s wrong at this stage. I have tried editing the buttons config several times & lost track of what I have and haven’t done, so I went back to the original config code and commented out the 2nd button, but no matter what I try it doesn’t work, so here’s the code code{ module: 'MMM-Buttons', config: { buttons: [ { pin: 24, name: "monitor_control", longPress: { notification: "REMOTE_ACTION", payload: {action: "MONITOROFF"} }, shortPress: { notification: "REMOTE_ACTION", payload: {action: "MONITORON"} } }, //{ //pin: 24, //name: "power", //longPress: { //title: "Power off", //message: "Keep pressed for 3 seconds to shut down", //imageFA: "power-off", //notification: "REMOTE_ACTION",_text //payload: {action: "SHUTDOWN"} //}, //shortPress: undefined //} ] } }, Any help/advice appreciated P.s I was originally wanting to use voice commands to my echo to do it, but the only one I found to do what I want was MMM-AlexaOnOff & it appears that’s got issues due to a change around wemo protocol, but if anyone has an option to make this work instead of a button, I’m open to considering that idea.
  • How to configure MMM-Buttons to start/stop MMM-Podcast2

    Solved
    2
    0 Votes
    2 Posts
    2k Views
    FoziF
    Alright, I found the solution myself, at least how to trigger play/stop with a push-button: I wasn’t aware that connecting GND and a GPIO Pin like BCM 27 will not trigger reliably anything as the status is floating, Thus a pull-down resistor is required to get a defined high status. Check this really comprehensive write-up: link text. So I added a resistor as gescribed, e.g. here: in chapter 4.2. Then I configures the MMM-Buttons module that way: { module: 'MMM-Buttons', config: { buttons: [ { pin: 27, name: "podcast", shortPress: { notification: "BUTTON_PRESSED", }, } ] } }, That’s it! When I now push the button the video stream start shortly after playing, and when I push again, it stops. The one thing I’m still trying to accomplish is that the PIR-sensor (AM312) on pin 4 triggers the video to start. I home this helps some of you, when you come by. Cheers, Fozi
  • MMM-Trello Doesn't load

    9
    0 Votes
    9 Posts
    5k Views
    Z
    I got the same problem but my pi show me that : an error occured: Error 404(not found): Cannot GET/1/lists etc… Someone know how to deal with it ?
  • MMM awesome alexa issue

    Unsolved
    1
    0 Votes
    1 Posts
    360 Views
    A
    Hi, i’ve installed MMM awesome alexa, it’seems all things are ok, i made the developer step with id, security, refresh token etc, but in my alexa app my smart mirror results off-line? Can someone help me? tnx
  • calendarext timeline not loading

    Unsolved
    1
    0 Votes
    1 Posts
    547 Views
    M
    i’m using mmm carousel and on the main page i have calendarext and a bunch of other modules,on slide1 i want to have all the same modules but change calendarext into timeline view but it doesn’t seem to be loading,i just get a gray box with the name of my calendar in in. i read in another thread that calendarext2 cannot draw itself unless it is on the main page,is it the same problem with timeline? is there any workaround? what i’m trying to achieve is month view on 1 slide and a more detailed weekly view on the next.are alternate modules the answer?
  • 0 Votes
    1 Posts
    416 Views
    P
    Hi, massive fan of the project. I’m trying to get MMM-Hotword working with some simple off/on module commands. when I start the process using npm start dev I get the following output (console): Connecting socket for: MMM-Hotword [HOTWORD] MMM-Hotword starts Sockets connected & modules started ... Launching application. Create new calendar fetcher for url: http://www.calendarlabs.com/ical-calendar/ics/75/UK_Holidays.ics - Interval: 300000 Create new calendar fetcher for url: https://calendar.google.com/calendar/ical/josh.shallow%40gmail.com/private-a91aad9e61329573cb33a74704da0fb3/basic.ics - Interval: 300000 Create new calendar fetcher for url: https://calendar.google.com/calendar/ical/cazz.bradshaw%40gmail.com/private-4a0e201364e11e14451b7d4310a52d9b/basic.ics - Interval: 300000 Create new news fetcher for url: http://feeds.bbci.co.uk/news/rss.xml - Interval: 300000 model.file : /home/pi/MagicMirror/modules/MMM-Hotword/models/smart_mirror.umdl modelPath : /home/pi/MagicMirror/modules/MMM-Hotword/models model.file : /home/pi/MagicMirror/modules/MMM-Hotword/models/hideall.pmdl modelPath : /home/pi/MagicMirror/modules/MMM-Hotword/models [HOTWORD] begins. [HOTWORD] Detector starts listening. [HOTWORD] Detected: hideall [HOTWORD] stops. [HOTWORD] Final Result: { detected: true, hotword: 'hideall', file: null } My questions are: is there a way to restart the HOTWORD listening process once a keyword is detected? when I run not in dev mode, the actions are not processed on the screen. my config is set up as below: { module: "MMM-Hotword", config: { mic: { recordProgram : "arecord", device: "plughw:1,0" // recording device (e.g.: "plughw:1") }, models: [ { hotwords : "smart_mirror", file : "smart_mirror.umdl", sensitivity : "0.5", }, { hotwords : "hideall", file : "hideall.pmdl", sensitivity : "0.5", }, { hotwords : "showall", file : "showall.pmdl", sensitivity : "0.5", }, ], defaultCommand: { notificationExec: { notification: "ASSISTANT_ACTIVATE", payload: (detected, afterRecord) => { return {profile:"default"} } }, afterRecordLimit:0, restart:false, }, commands: { "hideall": { moduleExec: { module: [], exec: (module) => { module.hide()} } }, "showall": { moduleExec: { module: [], exec: (module) => { module.show()} } }, }, restart: true, testMic: true, useDisplay: true, verbose: true } } any guidance would be appreciated! Josh
  • Playing Youtube video with MMM-AssistantMk2 not working

    Unsolved
    3
    0 Votes
    3 Posts
    3k Views
    V
    @Sean thank you. I will run it this evening and send it to you. I really appreciate all your help.
  • Need help for PIR-SENSOR

    Moved Unsolved
    4
    0 Votes
    4 Posts
    1k Views
    C
    @Fozi { module : “MMM-PIR-Sensor”, config : { sensorPIN: 4, powerSaving: true powerSavingDelay: 60, } thank you for your answer but it doesn’t work at all, the mirror doesn’t configure as before, i.e. it doesn’t mark the required info anymore, it requests me to create a config file and can’t stop where I put the brace
  • Configured PIR sensor but won't trigger

    Unsolved
    6
    0 Votes
    6 Posts
    2k Views
    N
    @tinsebayacc this is the one https://github.com/paviro/MMM-PIR-Sensor/blob/master/README.md
  • Modify clock module

    Unsolved
    2
    0 Votes
    2 Posts
    1k Views
    B
    In custom.css add .clock .date {color: red}
  • MMM-AVStock not returning prices

    Solved
    5
    0 Votes
    5 Posts
    2k Views
    S
    @sonicgoose cool… thanks for the update
  • MM-TweetsByTimelineOrList: Cannot get list to work

    Unsolved
    1
    0 Votes
    1 Posts
    352 Views
    B
    I am am able to get this module to work with TIMELINE, but I cannot get it to work with “cool” a list I have. listToShow: ‘cool’ I’m not exactly sure what “the stub name” means in the help doc.
  • MMM-Launch and other space modules not loading

    Solved
    8
    0 Votes
    8 Posts
    2k Views
    S
    @Dz3015 and get the fix for googlemapstraffic from my GitHub repo Rename current folder out of the way, git clone mine instead Same config
  • Current weather module

    Solved
    6
    0 Votes
    6 Posts
    2k Views
    S
    @Doogain computers are really really FAST , at following EXACT orders… no deviation…
  • MM says my config is wrong.

    Solved
    3
    0 Votes
    3 Posts
    1k Views
    D
    Wow, that was awkward. Thanks man haha
  • MMM-Facial-Recognition

    Unsolved
    31
    0 Votes
    31 Posts
    17k Views
    B
    I’m back. Where did we leave off?
  • I have these two files config.js and MMM-GooglePhotos.js

    Unsolved
    3
    0 Votes
    3 Posts
    939 Views
    K
    @sdetweil I will stop messing with it then. Thanks for the info.
  • MMM-Face-Reco-DNN doesn't work

    Solved mmm-face-reco-dnn config.js opencv
    16
    0 Votes
    16 Posts
    6k Views
    A
    Everything works. I’m just stupid as hell and didn’t add the classes to the other modules.
  • Help with MMM-Scraper

    Unsolved
    1
    0 Votes
    1 Posts
    481 Views
    S
    Hello everyone, thank you for all your supports that are given us on this nice forum, am totally new to programming and to MagicMirror, i have now installed my first MagicMirror, but i would like to ask if i can get some help, i have installed the MMM-Scraper to fetch some prayer time to my magic mirror, and since am totally new to JS and to programming, i don’t know how to modify the JS file to fits my need, what i need to do is to get the table from the right side of this page and to show it on a nice way, i have managed to make Scraper work but it gives me 1 column of data, i need to have it as a table that has the left column on top and the corrosponding time under and then i would like to add some other features like some calculation and highlight the next prayer time, i know there is a lof of modules but this site is the only site that has the correct data for our area, and am designing the mirror for my old parents to make their life a bit easier, the site that am trying to fetch the data from is: https://www.muslimpro.com/en/find?country_code=SE&country_name=Sverige&city_name=Helsingborg&coordinates=56.0464674,12.694512099999997 many thanks all for your help and support All the best!