@Shawnsully can you post your config file
Read the statement by Michael Teeuw here.
Posts
-
RE: Tutorials or Overview for Module Dev?
@yawns I create only a node_helper if I need to use a npm dependency
-
RE: NFL Score Module
@daveyg_71 well when you want to have the color the right way to go is this
colored: true -
RE: NFL Score Module
@daveyg_71 you need to remove the quotes, otherwise the boolean is a string and will represent true
config: { colored: false, network: false, reloadInterval: 900000, }, -
RE: Move Module to corner
@andrewchumchal the body has a margin in main.css
body { margin: 60px; position: absolute; height: calc(100% - 120px); width: calc(100% - 120px); ... }you could override that in custom.css
-
RE: MMM-ModuleScheduler - Module Schedules and Notifications
@dr4ke616 hide module will call the hide method of the module
quote from the readme
When a module is hidden (using the module.hide() method), the suspend() method will be called. By subclassing this method you can perform tasks like halting the update timers.so you can do the specific behaviour you want in therefor show module it’s the
resumemethod -
RE: RPI Update
@MichMich i upgraded to PIXEL as well and created a pull request to use a new feature for the MagicMirror
-
RE: Issues with electron.js on installation
@azmuth94 did you try to update node? you’re running 4.2, I’m using 6.5
-
RE: Two way mirror suppliers - Australia!
@Sar6e A friend of mine lived in Australia, he imported a lot of stuff from Asia for cheap prices and resaled them in Australia, maybe it’s worth it to look for a supplier on alibaba or somewhere else and import a mirror from there.
-
Can't load script correctly
I stumbled upon a weird behaviour, when I define the Google Maps js file in getScripts there is no error, but there is no script tag added and so the file will not be loaded,
getScripts: function () { console.log("https://maps.googleapis.com/maps/api/js?key=" + this.config.map_api_key); return ["https://maps.googleapis.com/maps/api/js?key=" + this.config.map_api_key]; },My first thought was, that the config object isn’t ready yet but the log shows the api key, so that’s not the problem, but I get a black screen, none of the modules will display.
Currently I add the script tag myself in the start method and everything works fine, but this isn’t the desired approach.
start: function () { Log.info("Starting module: " + this.name); var script = document.createElement("script"); script.src = "https://maps.googleapis.com/maps/api/js?key=" + this.config.map_api_key; document.querySelector("body").appendChild(script); this.sendSocketNotification("CONFIG", this.config); },Any ideas?
-
RE: MMM-ModuleScheduler - Module Schedules and Notifications
@cowboysdude adding a css filter to the specific module could set the brightness down
-
RE: sendNotification & notificationReceived does not seem to work, am I missing something.
@Squawk09 you’re right you don’t need a node_helper for it. Did you log if you’re receiving a notification, maybe you don’t or you try to access it before you get the notification? A guess in the dark is, that you loose the scope of
thiswith using a callback function. Can you please provide also the snippet where you trying to access your variable? -
RE: Voice on/off
@SimJim I will release a voice module the next days, which has this feature already built in. So stay tuned
-
RE: NFL Score Module
@kwaeksler https://github.com/fewieden/MMM-NFL#installation
any errors in the console?
did you run
npm install?in the config
{ module: 'MMM-NFL', position: 'top_right'} -
RE: NFL Score Module
I want to announce, that there will come statistics in place the next days

-
RE: Weatherunderground - currently - hourly - daily - configurable
@ostfilinchen I would try a selector like this
.MMM-WunderGround div.large span.wi { /*change the size here*/ } -
RE: MMM-NetworkScanner
@desq are you sure you did this step?
cd ~/ sudo apt-get install arp-scan
