This has been kicking my butt for the last day and a half. Learning a lot during the beating though. Do I need to add ’ ’ around numeric values as well?
Read the statement by Michael Teeuw here.
Posts made by joeytuck
-
RE: Help... I need help installing 3rd party modules to Magic Mirror 2
-
RE: Help... I need help installing 3rd party modules to Magic Mirror 2
Added that comma as well and itś still failing. Hereś what Iḿ getting.
pi@raspberrypi:~/MagicMirror $ npm start
magicmirror@2.1.1 start /home/pi/MagicMirror
sh run-start.shStarting MagicMirror: v2.1.1
Loading config …
WARNING! Could not validate config file. Please correct syntax errors. Starting with default configuration.
Loading module helpers …
Initializing new module helper …
Module helper loaded: updatenotification
No helper found for module: helloworld.
All module helpers loaded.
Starting server on port 8080 …
Starting server op port 8080 …
Server started …
Connecting socket for: updatenotification
Sockets connected & modules started …
Launching application. -
RE: Help... I need help installing 3rd party modules to Magic Mirror 2
Good catch. I added the comma, saved the config file and tried pi@raspberrypi: ~/MagicMirror $ npm start To no avail. Do I need to do anything to the MMM-Traffic config.js file defaults?
-
RE: Help... I need help installing 3rd party modules to Magic Mirror 2
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 } }, { module:´MMM-Traffic´, position: ´bottom_right´ classes: ´dimmed medium´, config: { api_key: ´´, mode: ´driving´, origin: ´´, destination: ´´, arrival_time: ´´, route_name: ´Home to Work´, changeColor: true, showgreen: false, limitYellow: 5, limitRed: 20, traffic_model: ´pessimistic´, interval: 120000, showWeekend: true allTime: true
}
},
]};
-
RE: Help... I need help installing 3rd party modules to Magic Mirror 2
Thank you for the replies. I did get Magic Mirror working for the initial setup prior to the 3rd party addition. I was missing the cd MMM-Traffic npm install portion. I did the npm install through Tools Open Folder in Terminal the first time. Not sure if that accomplishes the same goal? Itś still giving me the config.js error. Here is what I have for a config file with my personal info and API key copied and pasted directly from Google redacted.
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 } }, { module:´MMM-Traffic´, position: ´bottom_right´ classes: ´dimmed medium´, config: { api_key: ´
´,
mode: ´driving´,
origin: ´´,
destination: ´´,
arrival_time: ´´,
route_name: ´Home to Work´,
changeColor: true,
showgreen: false,
limitYellow: 5,
limitRed: 20,
traffic_model: ´pessimistic´,
interval: 120000,
showWeekend: true
allTime: true
}
},
]};
-
Help... I need help installing 3rd party modules to Magic Mirror 2
Hi everyone,
I’m painfully new to any form of programming and could really use an assist on the proper way to install 3rd party modules on MagicMirror. I keep running into config.js issues on load up whenever I try to install a non factory module into the config.js file. I am trying to go by the instructions on github for mmm-traffic and to be honest I don’t even understand where or how to execute the files or where to do the npm install? Like I said, hardcore beginner. Any help would be greatly appreciated. This is a birthday present that I’m building and I’m already late with it.