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

    Solved
    4
    0 Votes
    4 Posts
    5k Views
    tosti007T
    @kurt Good to hear!
  • MMM-PIR-Sensor - Delay

    1
    0 Votes
    1 Posts
    1k Views
    P
    Hi guys, i installed the PIR-Sensor module and it is working. I am using the default configs. But i have noticed a undefined delay. Sometimes it lasts up to 30 seconds to turn on the display. Other time it was only 15 seconds. Actually the monitor should be turned on again without a delay. What can I do? Do you have any hint for me? pauabaer
  • Electron NPM Error

    28
    1 Votes
    28 Posts
    23k Views
    F
    They fixed the issue with extract-zip. Thanks.
  • MMM-Myvoiceradio with button

    1
    0 Votes
    1 Posts
    932 Views
    B
    Hello, I need help, I will use the MMM-Myvoiceradio module with buttons not this microphon. I have make buttone with MMM-Buttons for Sender+ to switch to the next sender and Sender- to switch to the previous sender VolumeUp to make a higher Volumen and VolumeDown to make a lower Volumen and radiostop for stop the radio. And have change the MMM-Myvoiceradio.js but nothing works. But I muss learn a lot of Javascript Module.register(“MMM-Myvoiceradio”,{ // Default module config. // defaults: { text: “Sender1: BigFMSender2: Einslive” // }, notificationReceived: function(notification, payload, sender) { var self = this; Sender = 0; If (notification === “Sender+”){ Sender = Sender+1; If (Sender > 2){ Sender = 1; } } If (notification === “Sender-”){ Sender = Sender-1; If (Sender < 1){ Sender = 2; } } if (Sender === 1){ self.sendSocketNotification(‘einslive’, {}); } if (Sender === 2){ self.sendSocketNotification(‘bigfm’, {}); } if (notification === “VolumeUp”){ self.sendSocketNotification(‘VolumeUp’, {}); if (notification === “VolumeDown”){ self.sendSocketNotification(‘VolumeDown’, {}); if (notification === “radiostop”){ self.sendSocketNotification(‘radiostop’, {}); } }, // Override dom generator. getDom: function() { var wrapper = document.createElement("div"); wrapper.innerHTML = this.config.text; return wrapper; } });
  • Weatherforecast min. and max. temp

    3
    0 Votes
    3 Posts
    2k Views
    P
    many thanks. worked!
  • MMM-Wunderground - Bug? High/Lows Reversed on Hourly

    1
    1
    0 Votes
    1 Posts
    1k Views
    C
    The hi/lo on hourly are reversed, but the daily shows correctly. [image: 1493489924376-upload-4b774732-f937-41f4-ac8c-563b0a840442.png]
  • Multiple requests within one function

    4
    0 Votes
    4 Posts
    2k Views
    B
    yeey, I got it working, although I don’t know why :P var NodeHelper = require("node_helper"); var request = require('request'); var Promise = require("promise"); var result = new Array(); module.exports = NodeHelper.create({ start: function() { console.log("Starting node_helper for module [" + this.name + "]"); }, // subclass socketNotificationReceived socketNotificationReceived: function(notification, payload){ if (notification === 'get_values') { this.getJSON(payload); } }, requestp: function(url, key, name) { return new Promise(function (resolve, reject) { request({url:url, method: 'GET'}, function (err, res, body) { if (err) { return reject(err); } else if (res.statusCode !== 200) { err = new Error("Unexpected status code: " + res.statusCode); err.res = res; return reject(err); } result.push({url: url, name: name, temp: body}); resolve(body); }); }); }, getJSON: function(object) { var self = this; for (var key in object) { //console.log(object[key]); self.requestp(object[key].url, key, object[key].name).then(function (info) { //console.log(info); }, function (err) { console.error("%s; %s", err.message, url); console.log("%j", err.res.statusCode); }); } //console.log(result); self.sendSocketNotification('received_values', result); result = []; } }); I wasn’t able to add a “temp” property to the original object - it was actually added, but it did not want to work outside the .then function :(
  • MMM-Hue CSS

    3
    0 Votes
    3 Posts
    2k Views
    zdenekZ
    @strawberry-3.141 ok, thx
  • MagicMirror-Netatmo-Module CSS

    9
    0 Votes
    9 Posts
    4k Views
    zdenekZ
    @broberg said in MagicMirror-Netatmo-Module CSS: .netatmo .wi-thermometer { color: yellow; } still the same :-( I tried to go through the module files, but I’ve no idea about syntax, so I’ve ne idea, if there is (let call it “object”) objec named “wi-thermometer” with property “color”. Anyway, thanks
  • Calendar translation

    3
    0 Votes
    3 Posts
    2k Views
    zdenekZ
    @broberg stupid me. Thanks a lot. Solved
  • Space between analog clock and data

    3
    1
    0 Votes
    3 Posts
    2k Views
    T
    @broberg Thanks a lot. It works.
  • MMM-Globe problems with refreshing pictures.

    5
    0 Votes
    5 Posts
    4k Views
    D
    still this error, error: Unable to append to .git/logs/refs/remotes/origin/develop: Permission den ied From https://github.com/MichMich/MagicMirror ! a6485b6…88a01d3 develop -> origin/develop (unable to update local ref)
  • Trouble in stalling modules

    2
    0 Votes
    2 Posts
    1k Views
    Mykle1M
    @ranger33 I can try to help you if you message me
  • iFrame

    1
    0 Votes
    1 Posts
    1k Views
    FistandantilusF
    Hi, i´m using the iFrame module to display a live news video feed: { module: 'iFrame', position: 'top_right', // This can be any of the regions. config: { url: "http://de.euronews.com/live", width: "800px", // Optional. Default: 100% or Example "200px" height: "600px", //Optional. Default: 100px or Example "300px" } }, Does anynody know how I can just display the video without that other website stuff? F.
  • Module Scheduler for an interesting UseCase

    1
    0 Votes
    1 Posts
    1k Views
    foxF
    Hello, i use already the module Scheduler. And we are using PIR Sensor. Now my wife asked me: Could we make it that the PIR sensor is deaktivated for e.g. 5pm to 9pm and monitor is always on. And rest of the time the PIR sensor is activated? And could the monitor be manually triggered to always-ON? E.g. if she wants it always on during afternoon for a while?
  • MMM-voice

    8
    0 Votes
    8 Posts
    4k Views
    strawberry 3.141S
    @funkdafied he didnt modify the installer, he just put those commands into the terminal
  • MMM-NetworkScanner - "residents" are offline but they should be online

    1
    0 Votes
    1 Posts
    875 Views
    zdenekZ
    Hi all MMM-NetworkScanner module works, but whatever I put in “residents”, seems they are offline { module: ‘MMM-NetworkScanner’, position: ‘bottom_right’, config: { devices: [ { ipAddress: “192.168.1.11”, name: “Mobile”, icon: “server”}, ], showUnknown: false, debug: false, showOffline: true, keepAlive: 60, updateInterval: 30, residents: “Mobile”, showLastSeen: true, occupiedCMD: {notification: ‘REMOTE_ACTION’, payload: {action: ‘MONITORON’}}, vacantCMD : {notification: ‘REMOTE_ACTION’, payload: {action: ‘MONITOROFF’}}, } }, IP 192.168.1.11 is on the same subnet as Raspberry, I can ping both from devices from my laptop (I can access 192.168.1.11 conf page), but the device name and icon are grey (offline). Any idea? I’ve tried IP, MAC - the same result, tried another IP (network printer) - also offline… thanks, Zdeněk
  • MMM-Podcast: omxplayer still running. kill forced

    6
    0 Votes
    6 Posts
    3k Views
    B
    push down. No one can help me?
  • 0 Votes
    1 Posts
    1k Views
    H
    Hi, I’m using the calender to show the next public holidays by including a public calendar: { module: "calendar", header: "Feiertage", position: "top_left", config: { calendars: [ { url: "http://www.ifeiertage.de/by-.ics" } ] } }, The appointments that are more than 1 Month away are just shown as “in %s Mon.”, see attached image. [image: 1493246087819-calendar.png] Maybe the plural of “Mon.” has to be explicitly specified (I’m using language: de ) but I don’t know how. Can you reproduce (and maybe fix) this issue?
  • no helper modules

    5
    0 Votes
    5 Posts
    5k Views
    Mykle1M
    @swagatbiswal said in no helper modules: I am trying to run it in ubuntu 16 I have MM installed on uBuntu. I remember updating node.js and npm was necessary. Are you getting any errors in the terminal or the console of dev tools?