A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • MMM-Remote -Control Known limitations

    3
    0 Votes
    3 Posts
    2k Views
    K
    @Anhalter42 Strange things happen When I tied to remove the modules in reverse order, as you recommanded, I could easily remove all of them. After that with the Allbuton, all modul appeared and I could make them either disappear all together or one by one from any direction, means from the bottom to the top or in reverse order. By now the Edit modules funktion is just working fine, just don’t know why. :relaxed: So have a big Thank you for your help
  • MMM-Todoist not showing Task after latest update

    4
    1 Votes
    4 Posts
    2k Views
    E
    Thnx for help. Everything works.
  • Problem of running MMM-Podcast and MMM-Button

    13
    0 Votes
    13 Posts
    8k Views
    A
    I’m glad it works. have fun with it. I am glad that I could help
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
  • Problem Getting IP Address for Remote Control Module

    5
    0 Votes
    5 Posts
    3k Views
    B
    @twosix this all depends on your router make and modell, google it.
  • Problem with MMM-Remote Control

    4
    0 Votes
    4 Posts
    2k Views
    A
    Under the Ip Whitelist you have to enter your ip address from the mobile phone or Pc or mac (do not know what device you use to access the raspi too) The raspi you have to assign a fixed ip. How it world do you have to look at the Internet If the screen and keyboard are present and connected, you can enter the following command on the command line: ifconfig or Ip a or Hostname -I
  • Magic mirror ipcam motorola

    2
    0 Votes
    2 Posts
    2k Views
    A
    @michael_klatt If it provides some sort of video interface via URL, then maybe you could use the iFrame module
  • Help with Weather Modules!

    2
    0 Votes
    2 Posts
    2k Views
    Y
    @twosix you could use both modules or you could remove the default ones. Either you remove the whole module entries: { module: "currentweather", position: "top_right", config: { location: "New York", locationID: "", //ID from http://www.openweathermap.org/help/city_list.txt appid: "YOUR_OPENWEATHER_API_KEY" } }, { module: "weatherforecast", position: "top_right", header: "Weather Forecast", config: { location: "New York", locationID: "5128581", //ID from http://www.openweathermap.org/help/city_list.txt appid: "YOUR_OPENWEATHER_API_KEY" } }, or you add disabled: true, like this: { module: "currentweather", position: "top_right", disabled: true, config: { location: "New York", locationID: "", //ID from http://www.openweathermap.org/help/city_list.txt appid: "YOUR_OPENWEATHER_API_KEY" } }, { module: "weatherforecast", position: "top_right", disabled: true, header: "Weather Forecast", config: { location: "New York", locationID: "5128581", //ID from http://www.openweathermap.org/help/city_list.txt appid: "YOUR_OPENWEATHER_API_KEY" } },
  • Button / modul

    12
    0 Votes
    12 Posts
    8k Views
    M
    External sites works good. Is someone familiar with error “Cannot GET *.html”, allways get this error when i tray to link to local site (html). If someone know how to solve the problem can please respond?
  • Calendar_Monthly - not updates

    3
    0 Votes
    3 Posts
    2k Views
    zdenekZ
    @strawberry-3.141 thx for the tip. Next time I´ll do. I didn´t know about the the console. I thought I´ve to run MM with parametr -dev to be able see dev console. Thanks
  • MMM-PIR-Sensor with RelayPin and execute script

    9
    0 Votes
    9 Posts
    5k Views
    B
    Yes, the error code says, you have not enought whitespaces before the lines.
  • Updating modules

    Solved
    4
    0 Votes
    4 Posts
    5k Views
    T
    @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
    25k Views
    F
    They fixed the issue with extract-zip. Thanks.
  • MMM-Myvoiceradio with button

    1
    0 Votes
    1 Posts
    964 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