A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • Can't configure Compliments Module

    10
    0 Votes
    10 Posts
    4k Views
    W
    @yawns said in Can’t configure Compliments Module: No, it will not automatically overwrite existing files if you simply run git pull but raise an error. Maybe that’s no problem for you but it is for several others. We see these issues every now and then. Phew! I thought you are referring about mine. Anyway thanks. I just started this MagicMirror project and still trying out every possible way to get what I want. Currently, still stuck at MMM-Assistant. Doesn’t response to snowboy, magicmirror AI speech recognition.
  • 2 problems with MMM-MyCommute module

    13
    0 Votes
    13 Posts
    10k Views
    S
    this helped immensely. i got my MM exactly where i want it now and can cancel CTATracker. sorry for being a nub
  • MMM-PIR-Sensor

    10
    0 Votes
    10 Posts
    5k Views
    M
    @codyS75 Yes. The 8mm hole perfectly fits the sensor. Drill the 3mm hole first. This way you can use it as the center point to drill the 8mm hole.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    13 Views
  • Office 365 calendar issues

    16
    0 Votes
    16 Posts
    14k Views
    schwoediauerS
    Hi all, I had the same problems with my calendar and Timezone (Amsterdam, Berlin…) The fix resoled my problems with outlook365 calendar https://github.com/MichMich/MagicMirror/pull/875/commits/4c702eaaad525c0b549ba02cf3ceb1a2f79b5ebc … after installing the fix I had to delete 2 old calendar entries and reboot my mirror
  • How to make my mirror look like this?

    2
    0 Votes
    2 Posts
    2k Views
    G
    Looks like it might be this… https://github.com/HannahMitt/HomeMirror
  • can someone help pleas with my config/config.js

    9
    0 Votes
    9 Posts
    3k Views
    Mykle1M
    https://forum.magicmirror.builders/topic/4231/how-to-add-modules-for-absolute-beginners
  • MMM-Astrology Sagittarius icon

    4
    0 Votes
    4 Posts
    2k Views
    C
    Many thanks! :)
  • How to setup Alexa skills

    Moved Unsolved
    2
    0 Votes
    2 Posts
    2k Views
    R
    I’m having the same problem! Hopefully is possible to do
  • Can all MM related npm's be updated?

    1
    0 Votes
    1 Posts
    1k Views
    E
    Please see this issue: https://github.com/MichMich/MagicMirror/issues/1210 Has anyone fully updated their MM and it’s fully working?
  • email-mirror not retrieving emails

    3
    0 Votes
    3 Posts
    2k Views
    L
    @ronny3050 any thoughts?
  • [FIXED] MMM-CalendarExt Facebook birtday events shown on two days

    10
    0 Votes
    10 Posts
    6k Views
    M
    @nn1mda When you ruled out time config mistakes log an issue on the Github module page https://github.com/eouia/MMM-CalendarExt/issues . The developer is very fast with support but I think he only monitors those issues and not actively monitors this forum. Please update this threat when you solve it s we all can benefit from the solution. good luck!
  • Modules assistance for MM newbie! Help!

    21
    0 Votes
    21 Posts
    13k Views
    F
    Hi @ ninjabreadman - Unbelievably I managed to follow your instructions to the letter! Sadly, it made no difference to the Pushbullet module I’m trying to add. As stated previously, the app ‘loads’ but constantly shows “No new Notifications”. I’ve put the relevant Pushbullet key in but it’s simply not displaying any messages. Do you have any thoughts or suggestions? Many thanks.
  • MMM-Strava Empty Chart

    1
    0 Votes
    1 Posts
    774 Views
    J
    I’ve installed the Strava module, the data displays correcty in “table” mode. When I switch the mode to “Chart” the weekly chart is empy. No data is visible, only a empty graph. Looks like a bug in the scripts…
  • Analog Clock Module Midori Browser

    3
    0 Votes
    3 Posts
    3k Views
    G
    I’m having the same issue except no amount of scaling will move it from 9 O’clock. In case anyone if lookingat unread psots and fixed it, how did you do it? Thanks.
  • MMM-cryptocurrency side by side top bar

    5
    0 Votes
    5 Posts
    3k Views
    N
    @StacheEnthusiast You’re right. Tables don’t take styling very well; table rows (tr) insist on taking their own line, so there’s no easy way to move them beside each other. The proposed solution above should circumvent this, putting all the cells (td) into a single row.
  • MMM-Rest & pimatic REST-API

    1
    0 Votes
    1 Posts
    865 Views
    ?
    I need help by my pimatic integration with the MMM-Rest Module. In the Module docu the url returns a single Integer but my pimatic api returs a string with more informations. like this curl http://user:user@himbeere/api/variables/dht-01.temperature {“variable”:{“name”:“dht-01.temperature”,“readonly”:true,“type”:“attribute”,“value”:20,“unit”:“°C”},“success”:true} what i need ist the value 20 how i can filter the response? i have found this for an php request but i dont know how i can use it in the node_helper.js <b>Single value from weather.temperature:</b><br /> php $curl = curl_init(); curl_setopt ($curl, CURLOPT_URL, "http://demo:demo@demo.pimatic.org/api/variables/variable-set.temperature"); curl_setopt ($curl, CURLOPT_RETURNTRANSFER, 1); $result = curl_exec ($curl);// curl to a variable curl_close ($curl); $result = json_decode($result, true);// decode to associative array $result = $result['variable']['value'];//pick desired value print "Temperature: ".$result; $result = Temperature 11.4 node_helper.js /* Magic Mirror * Module: MMM-Rest * * By Dirk Melchers * MIT Licensed. */ var NodeHelper = require('node_helper'); var request = require('request'); module.exports = NodeHelper.create({ start: function () { console.log(this.name + ' helper started ...'); }, socketNotificationReceived: function(notification, payload) { if (notification === 'MMM_REST_REQUEST') { var that = this; request({ url: payload.url, method: 'GET' }, function(error, response, body) { // console.log("MMM_REST response:"); if (!error && response.statusCode == 200) { // console.log("send notification: "+payload.id); that.sendSocketNotification('MMM_REST_RESPONSE', { id: payload.id, data: response }); } }); } } }); does anyone have an idea how i can integrate the decode in the node_helper.js?
  • MMM-WunderGround clock and MPH issues

    4
    0 Votes
    4 Posts
    2k Views
    Mykle1M
    @codyS75 No worries my friend. We’ve all been there. :-)
  • MMM-MirrorMirrorOnTheWall and MMM-AlexaPi

    4
    0 Votes
    4 Posts
    3k Views
    A
    Well, now that I’m looking at the Amazon Developer Console, I’m noticing something that I may have overlooked…My Alexa Skills have not been certified or published. My understanding was that you don’t want to publish the skills because they will then be available to the public. I thought that if I simply avoided those steps, I would be in an acceptable “beta” state since I only need it for home use. The other option I saw was to give access to only an Amazon Business Account, but that doesn’t seem right for the magic mirror setup. Am I thinking about this correctly? Did everyone else here make their MagicMirror2 Alexa skills public?
  • MMM-Google Assistant

    1
    1 Votes
    1 Posts
    2k Views
    ChrisC
    Hello, I am trying to install this module but I am having problems with a step of the installation of the Google Assistant SDK. (https://developers.google.com/assistant/sdk/guides/library/python/embed/register-device) Everything is fine until the step “Register the Device Model”. Indeed, when I use the registration tool, it does not work. I tried the command: (env) $ googlesamples-assistant-devicetool register-model --manufacturer "Assistant SDK developer" \ --product-name "Assistant SDK light" --type LIGHT --model my-project-1505046981535-my-model1 Each time I have the following error message: Error: Error loading client secret: [Errno 2] No such file or directory: 'client_secret_xxxxx-m88slnqk24bqul282n0nnogs10sck6qo.apps.googleusercontent.com.json'. Run the device tool with --client-secrets or --project-id option. Or copy the client_secret_xxx-xxxx.apps.googleusercontent.com.json file in the current directory. Could someone tell me the procedure to follow? Thank you in advance, Regards,