Read the statement by Michael Teeuw here.
config,js beginner
-
@berne You do have one error remove the lonley
]but keep the],.In addition, the linter you is way to sensitive, try the one I posted, or simply use Visual Studio codes Intelisense, it will automatically show you errors…
Linter: https://jshint.com/
-
every module looks lie this
{ module:"name", position: " pos", header: "????", config: { } },try to make sure the [ and { line up
inside the config the same [, { and comma pattern
one tricky thin is onside arrays (lists of things), when the things are groups like calendar and rss feed
there needs to be a comma after the LAST entry too{ module: "calendar", header: "Kalender", position: "top_left", config: { calendars: [ { symbol: "calendar-check", url: "https://calendar.google.com/calendar/ical/berntsson88%40gmail.com/public/basic.ics" } // < ----- missing comma ] } },using jslint is a pain… you need to check a bunch of things on the bottom of the page,
else get lots of useless errors,… single quotes, whitespace, -
@sdetweil There is no comma needed after the last entry, a comma is only needed if an object is followed by another object, a comma after a last object is not mandatory.
-
102 Expected ‘}’ to match ‘{’ from line 90 and instead saw ‘]’.
108 Expected ‘]’ to match ‘[’ from line 28 and instead saw ‘}’.
109 Expected ‘}’ to match ‘{’ from line 11 and instead saw ‘]’.
109 Missing semicolon.
109 Unrecoverable syntax error. (94% scanned).okej, igot this,
we can take 102 dose that mean i just need to swap to }?
109 i have no ide what that translate :S -
@idoodler yeh, i can never tell… some modules use the extra comma , some don’t … looked thru my config and it has one everyplace… doesn’t hurt…
-
@berne on 101 u have ] and then on 102 u have another ]
use a good editor Notepad++ on windows… it will show you the matching ( { and [ with ], } and )
-
Expected '}' to match '{' from line 90 and instead saw ']'.- Remove the
]in the line above (Line 101) This will validate your config you can ignore the other warnings.
- Remove the
-
@sdetweil but can i trust https://jshint.com/
and do what it saying to get it right, like 102
just swap ] to }’ on 102i what to learn… but is really hard, i Appreciate you time and @idoodler too
-
@berne I recomend you to to checkout the structure of the existing
config.jsfile.You may also check out the W3Schools documentation: https://www.w3schools.com/js/js_objects.asp
-
-
I wrote a small post on this topic.
JSON is supposed to be easy and straightforward, but when there is nested data it can get quite complex.https://forum.magicmirror.builders/topic/9712/cannot-add-modules/14
-
@evroom and each module gets to customize the config to their needs, so no two look alike… (to the beginners)
-
I am thinking about install this
https://github.com/dolanmiu/MMM-awesome-alexa/blob/master/README.mdBut I don’t have a pi button, do I really need that?
Can’t I jut lay say -Alexa light the magic mirror -
@mumblebaj
This is my config now, is it looking right? i havet dare to past in to the config,js berfore some one can tell me its right/* Magic Mirror Config Sample * * By Michael Teeuw http://michaelteeuw.nl * MIT Licensed. * * For more information how you can configurate this file * See https://github.com/MichMich/MagicMirror#configuration * */ var config = { address: "localhost", // Address to listen on, can be: // - "localhost", "127.0.0.1", "::1" to listen on loopback interface // - another specific IPv4/6 to listen on a specific interface // - "", "0.0.0.0", "::" to listen on any interface // Default, when address config is left out, is "localhost" port: 8080, ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses // or add a specific IPv4 of 192.168.1.5 : // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"], // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format : // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"], language: "en", timeFormat: 24, units: "metric", modules: [ { module: "alert", }, { module: "MMM-NowPlayingOnSpotify", position: "bottom_right", config: { showCoverArt: true, clientID: "XXXXXXXX", clientSecret: "XXXXXXXX", accessToken: "XXXXXXXXX", refreshToken: "XXXXXXXX" } }, { module: 'MMM-awesome-alexa', position: 'bottom_bar', config: { wakeWord: 'Smart Mirror', clientId: 'XXXXXXX', clientSecret: 'XXXXXX', deviceId: 'Magic_Mirror', refreshToken: 'XXXXXXX', lite: false, isSpeechVisualizationEnabled: true } } { module: "updatenotification", position: "top_bar" }, { module: "clock", position: "top_left" }, { module: "calendar", header: "Kalender", position: "top_left", config: { calendars: [ { symbol: "calendar-check", url: "https://calendar.google.com/calendar/ical/berntsson88%40gmail.com/public/basic.ics" } ] } }, { module: "compliments", position: "lower_third" }, { module: "currentweather", position: "top_right", config: { location: "Vara,Sweden", locationID: "2665018", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city appid: "cb3ba3fb9618b6f6de3fbbb9ee78284e" } }, { module: "weatherforecast", position: "top_right", header: "Weather Forecast", config: { location: "Vara,Sweden", locationID: "5128581", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city appid: "cb3ba3fb9618b6f6de3fbbb9ee78284e" } }, { module: "newsfeed", position: "bottom_bar", config: { feeds: [ { title: "Aftonbladet", url: "http://www.aftonbladet.se/nyheter/rss.xml" }, { title: "Macworld", url: "http://feeds.idg.se/idg/FPjt", }, ], showSourceTitle: true, showPublishDate: true, broadcastNewsFeeds: true, broadcastNewsUpdates: true } }, ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== "undefined") {module.exports = config;} -
@berne You are missing a comma after the closing bracket of MMM-awesome-alexa. It should be
},
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