@sdetweil Same problem identification, way better solution!
Read the statement by Michael Teeuw here.
Posts
-
RE: npm install error
-
RE: npm install error
I’m not really sure what your question is, or if you even have a question?
I’m making the assumption that your question is: why do you get the errors? That is probably because mac and RPI have 2 totally diferrent operatings systems.
The errors are a result of that, This bold part of the error is telling that the ellection.app is installed on MacOS: "Electron.app/Contents/MacOS/Electron: 1: " But you are running it on a RPI.To solve this you can do a clean install of MagicMirror on the RPI and install the modules as well. Then copy the changed config files, probably being config.js and custom.css
-
RE: Animated rainbow color gradient for the default clock module
@Smotx
This line below in your custom.css has to match the module class in your config.js.clock-time-only-colorMy 2e clock mudule inside config.js looks like
{ module: "clock", position: "top_center", classes: "clock-time-only", //this line config: { timeFormat: 24, showPeriod: true, displaySeconds: false }If you have any more questions let me know :winking_face:
-
RE: Animated rainbow color gradient for the default clock module
@Smotx Jup in custom.css.
ps. I have two clock modules, one with time only and the other with date only ;) -
RE: Best glass transparency for MagicMirror
Maybe this link can help you with answering your question? It’s all about research i guess. :winking_face:
-
RE: My First mirror 24" x 36" with 24" LCD Monitor
@keyun21 Looks very nice man! Are you considering changing something, so it’s less obvious where you placed the screen behind the mirror, when somebody is watching the mirror?
-
RE: 55" LED TV Cr4z33 Mirror
@Cr4z33 Looks really clean, I really like the border less glass. Seems like it’s a high quality mirror you used there! Job well done! :winking_face: :thumbs_up:
-
RE: Need a tester on Pi for a new module :)
@THeStigh I’m willing to test as well. Because i agree with @strawberry-3-141 more testers gives more and diverse data and will help you perfect the module faster. Let me know how you think about it :winking_face:
Ps. I’m using the raspberry pi 3b+
-
RE: Anyone fancy doing a fulscreeen month calendar?
@stuartiannaylor Can you show me a picture to explain “boy it just doesn’t fit”? modifying the custom css can probably help you to achieve what you want.
Do you have a picture of something similar to what you want?
-
RE: Anyone fancy doing a fulscreeen month calendar?
Is this module or maybe this module? close or similar to what you have in mind? You can make both of these modules fullscreen by using the fullscreen_above or fullscreen_below position.
If you have any more questions let me know :slightly_smiling_face:P.s. You don’t have to reinvent the wheel :winking_face:
-
RE: Total rookie, got it "running" but need help
@motdog If you could post your config file without the secret’s in it. Secrets being api keys and other sensitive information I can help you further.
If you enclose your code with ``` it will be more readable.
//your code hereAnswers for your questions
To install de dependecies for MMM-DarkSkyForecast, you will need to use the command prompt (can be found in the start menu). You can use this info to navigate to the right folder being MMM-DarkSkyForecast. When you are in the right folder use the command npm install to install all the dependecies.Latitude and longitude can be found on here
Good luck and if you have any more questions ask!
greetings Ganget
-
RE: MMM-MovieInfo
@stuartiannaylor I can only find the command
npm install --productionin the install documentation of npm. The next quote from there website will explain what it does.
“With the --production flag (or when the NODE_ENV environment variable is set to production), npm will not install modules listed in devDependencies.”
Hope this will answer your question.
-
RE: MM2 my first try
@seramik You can find the problem inside the modules by using the Developer tools. Acces this by using the shortcut ctrl + shift + i. When you have the developer tools open you can inspect elements and figure out errors by reading the console log and or relevant code for the element. There is so much more information there though :winking_face:
This really important tool will help you so much with fixing problems inside your MagicMirror. What also will help you is this forum and knowledge you gather. Good luck with figuring out your 2 problems! If you have more questions do ask!
-
RE: MM2 my first try
@seramik a good question with way too less info to give a good answer. maybe this install guide can help you further!
-
RE: How to start
There is a really nice installation guide from @KirAsh4 that will tell you every thing you need to know!
-
RE: MMM-Uber and MMM-Lyft
Maybe the developer tools can help you?
You can acces the developer tools in your MagicMirror by pressing the shortcut ctrl+shift+i. Here is some more info on those shortcuts.
With the developer tools you can do allot of things! Maybe in this situation you can check if you are recieving data from the api?Another thing you can do is look into the code of the modules so you can try to understand what triggers the checking status… Which criteria needs to be met to display this message?
-
RE: some modules are not showing on screen
@stephen You can start MM with developer mode. This can be done by using the cmd shell inside the MagicMirror folder and run the following command:
npm start devor when you’re MM is already running use the shortcut ctrl+shift+I. This article from @Mykle1 gives you all the info you need.
All of this can be done will using VNC. (I use VNC as well :smiling_face_with_smiling_eyes: )
Good luck!
-
RE: Default Calendar module // request to show events only if start date > today + 2 days
No you did not miss anything in my code i just misinterpreted your question. Sorry for that here is another idea that could work. Maybe the continue statement will help you to skip the 2 first entries of the calendar. You will need to change the module code for that to work.
-
RE: Default Calendar module // request to show events only if start date > today + 2 days
you can try to use this
config: { fetchInterval: 60000, maximumEntries: 15, // you can also change this to 2 to have the first 2 entries only maximumNumberOfDays: 365, //change this to 2 it should limit the max number of days in the future to 2 animationSpeed: 0, fadePoint: 3, timeFormat: 'absolute', dateformat: 'dddd Do MMM', urgency: 3, calendars:Let me know if it works out