Read the statement by Michael Teeuw here.
messed up my config.. MM tells me to create a config file
-
This post is deleted! -
This post is deleted! -
This post is deleted! -
@johnnyboy as I said earlier you can use single and double quotes, it doesn’t matter which one, but it has to be either
"
or'
and you used a backtick`
, which is not working -
This post is deleted! -
@johnnyboy said in messed up my config.. MM tells me to create a config file:
};
I see that you got one }; that are making the error should look like this }, if i am right but i am new to this to so i can be wrong :)
-
This post is deleted! -
This post is deleted! -
Hey,
I have some issues here too. Not very familiar with Linux and just got my first RPI, for this project specifically :)
I’ve been trying for hours now to get this to work, but MM just says that I need a working config file. I’ve tried editing the text in Sublime (I find it easier to read than the built in texteditor on Raspbian), but I can’t seem to find the errors.
I’m attaching the contents of my config file, minus the tokens and stuff:
/* Magic Mirror Config Sample * * By Michael Teeuw http://michaelteeuw.nl * MIT Licensed. */ var config = { port: 8080, address: 192.168.86.131, ipWhitelist: ["192.168.86.100", "192.168.86.150"], language: "en", timeFormat: 24, units: "metric", modules: [ { module: "alert", }, { module: "updatenotification", position: "top_bar" }, { module: "clock", position: "top_left" }, { module: "calendar", header: "Kalender", position: "top_left", config: { calendars: [ { symbol: "calendar-check-o", url: "https://calendar.google.com/calendar/the_rest_of_my_calendars_URL" } ] } }, { module: "compliments", position: "lower_third" }, { module: "currentweather", position: "top_right", config: { location: "Kongsvinger", locationID: "3149533", //ID from http://www.openweathermap.org appid: "MY-TOKEN-HERE" } }, { module: "weatherforecast", position: "top_right", header: "Weather Forecast", config: { location: "Kongsvinger", locationID: "3149533", //ID from http://www.openweathermap.org appid: "MY-TOKEN-HERE" } }, { module: "newsfeed", position: "bottom_bar", config: { feeds: [ { title: "NRK Siste nytt", url: "http://www.nrk.no/nyheter/siste.rss" } ], showSourceTitle: true, showPublishDate: true } }, ] } { module: "MMM-Ruter", header: "Reisetider", position: "top_left", config: { showPlatform: true, maxItems: 10, stops: [ { stopId: "4024715", platforms: [ "1", "2" ], timeToThere: 5 } { stopId: "4020080", platforms: [ "1", "2" ], timeToThere: 0 } ] } }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== "undefined") {module.exports = config;}
Any help is highly appreciated!
-
This post is deleted!