@Mitch1138 did you try .MMM-Nest table.xsmall.table { font-size: 20px; line-height: 25px; } ?
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-Nest
-
RE: Integrating an npm module that uses import
@lavolp3 which version of nodejs are you running? import is a feature of es6 modules. You can try to enable it like this https://stackoverflow.com/a/45854500
-
RE: Modules size
To close up this topic the solution he needed was
.MMM-swisstransport { width: 400px; } -
RE: MMM-AlexaPi
@johnnyboy i have no idea how this file looks, but if it is like
token = ... #token = ...you should remove it
-
RE: MMM-AlarmClock
-
RE: Custom module to run python script
@Sputnik the facerecognition moduel of @paviro makes also heavy use of python scripts, take a look here https://github.com/paviro/MMM-Facial-Recognition/blob/master/node_helper.js
-
RE: iframe full screen
{ module: "helloworld", position: "fullscreen_below", config: { text: "<iframe src='https://magicmirror.builders' style='border: 0; width: 100%; height: 100vh;'></iframe>" } }, -
RE: Blank Black Screen - noob
@dslucki you dont have the permission to access, you probably did sudo npm install before and so your normal pi user has restricted access to it.
try
npm install --unsafe-perm -
RE: MMM-TTS
@davericher if you like you can create a pr to let the user decide via config if he wants to use festival or speech synthesis :)
-
RE: Modules not showing up on KWEB or Midori
@nixidee yes that’s what I was talking about.
The following lines should get you going, but the ecmascript is finalized and standard since june last year, you should probably think about switching the browser if their updates are that far behind
MMM-soccer
var self = this; setInterval(function(){ self.getData(); }, this.config.api_key ? 300000 : 1800000);MMM-Fuel
var self = this; return setInterval(function(){ self.sortByPrice = !self.sortByPrice; self.updateDom(300); }, this.config.rotateInterval); -
RE: Raspberri Pi Zero W moment is not defined.
@Penson122 try to do npm install in
/home/pi/MagicMirror/vendor -
RE: Motion Detector
@mongo116 it looks like https://github.com/alexyak/motiondetector/blob/master/diff-cam-engine.js#L37 it creates 10 images per second and compares it to the previous which is probably the intensive part
-
RE: Voice/motion control
@Mitchfarino you can create every command you want by inserting it in the config and create a trained model for it
-
RE: How to implement specific module?
@Jeff the instructions of @bhepler are based on magicmirror2 modules, the module you came up with is based on mm1 and is incompatible with mm2 so mayber there were also different instructions for them.
you can but you don’t have to run npm update if the readme doesn’t explicitly points it out, this command will only check for newer versions of the dependencies and update those.
-
RE: Special Calendar entries in differen colours?
@xeroxu you have to create css rules to change color without modifying the modules code, so that’s what I told above.
But if you can split the calendar in one for each person and still use all of the three calendars you can colorize everyone independently.
-
RE: MMM-AlarmClock
@axellejamous you cannot do that via the config. I suggest you to create a module which is handling your buttons and sending a
SET_ALARMnotification. Then you need to enhance the alarm module by listening to that notification and set the alarm accordingly. -
RE: Voice/motion control
@Mitchfarino you can also register with github account which is a control version system used for coding, but i’m not using snowboy.kitt.ai. i have my own voice recognition
-
RE: Facial Recognition - customize your mirror for every user!
@Aly sounds like you didn’t install the dependencies with
npm installin the MMM-Facial-Recognition directory -
RE: Compliments are not shown on Mirror
@dboa The compliments module makes use of an arrow function which is not supported within midori browser. So this might be the reason it doesn’t show up.
https://forum.magicmirror.builders/topic/2031/compliments-not-displaying