MagicMirrorOrg / MagicMirror

MagicMirror² is an open source modular smart mirror platform. With a growing list of installable modules, the MagicMirror² allows you to convert your hallway or bathroom mirror into your personal assistant.
http://magicmirror.builders
MIT License
19.7k stars 4.2k forks source link

Black Screen #992

Closed lesajo closed 7 years ago

lesajo commented 7 years ago

Hello.. i have add the config..

/ Magic Mirror Config Sample

var config = { 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: "updatenotification",
        position: "top_bar"
    },
    {
        module: "clock",
        position: "top_left"
    },
    {
        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;}

but i get only a black screen.. what i have to do ?

starte with node serveronly.. für rasp 1

plz help :(

lesajo commented 7 years ago

so i have make some updates....

sudo apt-get update sudo apt-get upgrade sudo apt-get dist-upgrade sudo apt-get clean sudo rpi-update

and it works .

roramirez commented 7 years ago

Please close the issue

For other time please use the forum for this kind of question https://forum.magicmirror.builders/