Read the statement by Michael Teeuw here.
hi, i need your help... tell me, how i do a new modules please
-
Here is additional information on checking your config file that may help…
-
in this moment, i am fix the comma, but no work it. now i am check the configuration and see like this…
Checking file… /home/pi/MagicMirror/config/config.js
Line 100 col 9 Expected ‘]’ to match ‘[’ from line 28 and instead saw ‘}’.
Line 101 col 5 Expected ‘}’ to match ‘{’ from line 11 and instead saw ‘]’.
Line 101 col 6 Missing semicolon.
Line 101 col 5 Unrecoverable syntax error. (94% scanned). -
this is a little part the file, config.js… tell me please whats is my wrong.
i can install all magic mirror, in that is ok
but i want install, alexa awesome, comand voice and other modules, and i have realy problem… :( thank dude for you help…
}, { module: "newsfeed", position: "bottom_bar", config: { feeds: [ { title: "New York Times", url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml" } ], showSourceTitle: true, showPublishDate: true, broadcastNewsFeeds: true, broadcastNewsUpdates: true } }, { module: "MMM-Snow", position: "fullscreen_above", config: { // See 'Configuration options' for more information. flakeCount: 100, theme: "winter", } } }, ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== "undefined") {module.exports = config;} -
please start using the markdown syntax and code blocks around your content…
i have edited two posts… for clarity
-
@bjjsoul said in hi, i need your help... tell me, how i do a new modules please:
Line 100 col 9 Expected ‘]’ to match ‘[’ from line 28 and instead saw ‘}’.
so, you have an error, you look to the line PRIOR to the one called out,
so line 99… and see what is wrong with that… it says some [] group isn’t completed, cause it say } before ]all brackets [] and braces {} have to be matched
-
mmmm sorry , i dont understand… :( my magic mirror is run perfect , whitout this module

AND THIS is , file MM-Snow.js
/* Magic Mirror * Module: MMM-Snow * * By Michael Teeuw http://michaelteeuw.nl * MIT Licensed. * * Comment on terminology: a 'flake' is any moving item being shown on the mirror, while * the specific themed items are called 'snow' or 'heart'. This applies to variable names * file names and css class names. */ Module.register("MMM-Snow",{ defaults: { flakeCount: 100, theme: "winter" // pick from themes map below, i.e. winter, love }, themes: { "winter" : { "flakePrefix" : "snow", // prefix of css name, e.g. snow1 "imagesCount" : 3, // number of images available in this theme, here: snow1, snow2, snow3 "downwards" : true, // direction of flake movements, snow goes downwards "sizeFactor" : 1}, // adapt size of flakes to your liking, use original flake size "love" : { "flakePrefix" : "heart", // prefix of css name, e.g. heart1 "imagesCount" : 2, // number of images in this theme, here: heart1, heart2 "downwards" : false, // direction of flake movements, hearts raise upwards "sizeFactor" : 2}, // adapt size of flakes to your liking, we like bigger hearts "water" : { "flakePrefix" : "bubble", // prefix of css name, e.g. bubble1 "imagesCount" : 1, // number of images in this theme, here: bubble1 "downwards" : false, // direction of flake movements, bubbles raise upwards "sizeFactor" : 2} // adapt size of flakes to your liking, we like bigger bubbles }, getStyles: function() { return [ "MMM-Snow.css" ] }, getDom: function() { var themeSettings = this.themes[this.config.theme]; var wrapper = document.createElement("div") wrapper.className = "wrapper" var flake, jiggle, size; for(var i = 0; i < this.config.flakeCount; i++) { size = themeSettings.sizeFactor * (Math.random() * 0.75) + 0.25; flakeImage = document.createElement("div") var flakeSuffix = Math.round(1 + Math.random() * (themeSettings.imagesCount - 1)); flakeImage.className = themeSettings.flakePrefix + flakeSuffix; flakeImage.style.transform = "scale(" + size +", " + size + ")"; flakeImage.style.opacity = size; flake = document.createElement("div"); if(themeSettings.downwards) { flake.className = "flake-downwards"; } else { flake.className = "flake-upwards" } jiggle = document.createElement("div"); jiggle.style.animationDelay = (Math.random() * 4) + "s"; jiggle.style.animationDuration = ((Math.random() * 30) + 30) + "s"; jiggle.appendChild(flakeImage); size = (Math.random() * 0.75) + 0.25; jiggle.style.transform = "scale(" + size +", " + size + ")"; jiggle.style.opacity = size; flake.appendChild(jiggle); flake.style.left = ((Math.random() * 100) - 10) + "%"; flake.style.animationDelay = (Math.random() * 100) + "s"; flake.style.animationDuration = 100 - (Math.random() * 50 * size) + "s"; wrapper.appendChild(flake); } return wrapper; } }); -
@bjjsoul can’t be perfect if you want to add another module
{ < --- start module module: "newsfeed", position: "bottom_bar", config: { < --- start module config feeds: [ < --- start array of feeds { < --- start feed title: "New York Times", url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml" } < -- end feed ], < --- end array (only one entry) showSourceTitle: true, showPublishDate: true, broadcastNewsFeeds: true, broadcastNewsUpdates: true } < ---- end module config }, < --- end module { < --- start module module: "MMM-Snow", position: "fullscreen_above", config: { < - start module config // See 'Configuration options' for more information. flakeCount: 100, theme: "winter", } < ---- end module config } < ---- end module , no comma, no more modules to follow }, < ------ what is this??????? ------------------------------- ] < --- no more modules, end module array -
HEY BRO YOU ARE AWESOME … THANK YOU DUDE, I AM VERY HAPPY! IS WORKING … HEY BRO YOU HAVE WHATSAPP THIS MY NUMBER 504 98674031 … I AM GONNA BE NEEDING YOU, IN MY NEXT MODULES INSTALLATIONS… THANKS

-
@bjjsoul no whatsapp…
-
-
hey bro, i need help with mmm.awesomealexa… you know if this module is working
-
thanks all for your responses. i was having similar questions and your answers were helpful to me.
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login