Read the statement by Michael Teeuw here.
Blank screen when Running Magic Mirror on Raspian and RP3.
-
@lagoon7 said in Blank screen when Running Magic Mirror on Raspian and RP3.:
{
module: “calendar”,
header: “US Holidays”,
position: “top_left”,
config: {
calendars: [
{
symbol: "calendar-check-o ",
url: “webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics”
}
]
}
},
{
module: “compliments”,
position: “lower_third”
},
{
module: “currentweather”,
position: “top_right”,
config: {
location: “New York”,
locationID: “”, //ID from http://www.openweathermap.org/help/city_list.txt
appid: “YOUR_OPENWEATHER_API_KEY”
}
},
{
module: “weatherforecast”,
position: “top_right”,
header: “Weather Forecast”,
config: {
location: “New York”,
locationID: “5128581”, //ID from http://www.openweathermap.org/help/city_list.txt
appid: “YOUR_OPENWEATHER_API_KEY”
}
},
{
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
}
},
]};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== “undefined”) {module.exports = config;}Stupid question here but did you do this---->
in terminal window in the
~MagicMirror/configcp config.js.sample config.js
-
@lagoon7 said in Blank screen when Running Magic Mirror on Raspian and RP3.:
npm WARN engine deep-extend@0.4.2: wanted: {“node”:“>=0.12.0”,“iojs”:“>=1.0.0”} (current: {“node”:“0.10.29”,“npm”:“1.4.21”})
You’ll certainly have to update node and npm. I had similar problems when I did a manual install on a laptop and updating those cleared things up for me.
Mine:
`Mykle@Mykle-Desktop MINGW32 ~/MagicMirror
$ node --version
v6.10.2Mykle@Mykle-Desktop MINGW32 ~/MagicMirror
$ npm --version
3.10.10
` -
@cowboysdude yes I did.
-
@Mykle1 Ok after that, I went to update node which updated npm.
Using this script for raspberry pi:curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -
I then deleted the magicmirror home directory, downloaded the installer script from the GIT repo, checked it again for versions and installs.
- I ran the script as a normal user. It completed successfully.
- Then ran the npm start command.
- Now magic Mirror is working.
Thanks!
-
@lagoon7 said in Blank screen when Running Magic Mirror on Raspian and RP3.:
I ran the script as a normal user. It completed successfully.
Then ran the npm start command.
Now magic Mirror is working.Thanks!
Great! Enjoy your mirror.