@McSorley
I have done this, worked quite well this weekend. Used HomeAssistant to know when it was snowing and if the description changes to “Snow” then have MM unhide the MMM-Snow module. I used RemoteControl to unhide and hide…
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-Snow - Yet another Snow Module
-
MMM-Remote-Control to hide module
I see that you can make a web browser call to restart MM with
http://192.168.xxx.xxx:8080/remote?action=RESTART
but I cannot figure out how to hide/show a module…
Anyone know how? I want to be able to show my MMM-Snow when it starts snowing outside (with the help of HomeAssistant).
-
RE: Module to display a local list?
Darn it, I was changing the update time in the module but not the config. It works now, thanks for all your help, this is a fantastic module!!!
-
RE: Module to display a local list?
@Sean said in Module to display a local list?:
xmlHttp.open(“GET”, url + “?” + Date.now(), true)
I did this but no change, it still will not update…
-
RE: Module to display a local list?
How do I get it to refresh? I added it to “refresh_interval_sec: 60,” but it does not seem to refresh. If I “Ctrl+R” i refreshes and shows changes.
Other than that it works great!!!
This is my test pi, the list from HTMLBox is in the upper right.
-
RE: Module to display a local list?
No one?
I got mmm-backlog working but it breaks other modules and does not sow up in my remote module so I assume it is missing something.And I tried MMM-HTTPRequestDisplay but cant get it to pull from a local file.
Here is my mmm-backlog module (renamed MMM-samslist)
MMM-samslist.jsModule.register('MMM-samslist',{ defaults: { title: 'List', fileUrl: '', units: config.units, animationSpeed: 1000, updateInterval: 360000, //update every hour refreshInterval: 360000 , //refresh every minute timeFormat: config.timeFormat, lang: config.language, initialLoadDelay: 0, // 0 seconds delay retryDelay: 2500, //fileUrl: "http://192.168.43.159:8080/modules/MMM-shoppinglist/list.json" }, // Define required scripts. getScripts: function() { return ["moment.js"]; }, // Define requird styles getStyles: function() { return ["font-awesome.css"]; }, start: function() { Log.info('Starting module: ' + this.name); this.loaded = false; this.sendSocketNotification('CONFIG', this.config); }, getDom: function() { //var wrapper = document.createElement("ticker"); //Added var wrapper = document.createElement("ticker"); wrapper.className = 'dimmed small'; var data = this.result; var statElement = document.createElement("header"); var title = this.config.title; statElement.innerHTML = title; wrapper.appendChild(statElement); //Added if (!this.loaded) { wrapper.innerHTML = this.translate('LOADING-Jason'); wrapper.className = "dimmed light small"; return wrapper; } if (!this.data) { wrapper.innerHTML = "No data"; wrapper.className = "dimmed light small"; return wrapper; } var t = this.data.list; var content = document.createElement("div"); content.innerHTML = ""; for (var i in t.datasequences) { content.innerHTML += t.datasequences[i].title + "<br />"; //content.innerHTML += t.title + " - " + t.datasequences[i].title + "<br />"; //for (var j in t.datasequences[i].datapoints) { // content.innerHTML += t.datasequences[i].datapoints[j].title + ": " + t.datasequences[i].datapoints[j].value + "<br />"; //} } wrapper.appendChild(content); return wrapper; }, socketNotificationReceived: function(notification, payload) { if (notification === "STARTED") { this.updateDom(); } else if (notification === "DATA") { this.loaded = true; this.processData(JSON.parse(payload)); this.updateDom(); } }, /* processData(data) * Uses the received data to set the various values. * * argument data object - tide information received form worldtides.info */ processData: function(data) { if (!data) { // Did not receive usable new data. // Maybe this needs a better check? return; } this.data = data; this.loaded = true; this.updateDom(this.config.animationSpeed); } });
and node_helper.js
'use strict'; const NodeHelper = require('node_helper'); var request = require('request'); module.exports = NodeHelper.create({ start: function() { this.started = false; this.config = null; }, getData: function() { var self = this; var myUrl = this.config.fileUrl; request({ url: myUrl, method: 'GET', }, function (error, response, body) { if (!error && response.statusCode == 200) { self.sendSocketNotification("DATA", body); } }); setTimeout(function() { self.getData(); }, this.config.refreshInterval); }, socketNotificationReceived: function(notification, payload) { var self = this; if (notification === 'CONFIG' && self.started == false) { self.config = payload; self.sendSocketNotification("STARTED", true); self.getData(); self.started = true; } } });
-
Module to display a local list?
Is there a module to display a list saved locally (or on dropbox)? A module to pull a .txt file or .json?
I am using this for a shopping list using any.do, I was using todoist but wanted more than one list displayed (and synced with amazon alexa).
I tried mmm-backlog from https://forum.magicmirror.builders/topic/1949/display-values-from-a-json-file-hosted-online/2 but could not get it to work properly for my needs.
-
RE: show content of text file
Did you ever get this going? If so please share how. I could not with html…
I too have a text file, a grocery list from any.do that I want to display.I was using todoist with this but want to display more than one list.
-
RE: After update, Calendar shows infinite number of events.
@Mykle1
Thanks, I was looking there, but now I see the “Source code (zip)” link! I just replaced the calendar module and now it is back to the way I want it.