@sdetweil said in Can't install MMM-WeatherForecast on raspberry pi Zero:
@Tomexx can u show us your config.js after installing the two modules?
you could also open the developers window, ctrl-shift-i on the mirror system ui,
and select the tab labeled console, and then scroll up to see any errors…
u can also filter the console by module, by placing some of the module name in the filter field
Thanks for the reply Sam.
Well, I was tinkering with the setup on pi zero and broke the magic mirror install. However the config is the same as on my pi 3. Here it is:
/* 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: "updatenotification",
position: "top_bar"
},
{
module: "clock",
position: "top_left"
},
{
module: "calendar",
header: "Family Calendar",
position: "top_left",
config: {
calendars: [
{
symbol: "My Calendar",
url: " MY PRIVATE KEY "
}
]
}
},
{
module: "MMM-Wallpaper",
position: "fullscreen_below",
config: { // See "Configuration options" for more information.
source: "bing",
slideInterval: 60 * 1000 // Change slides every minute
}
},
{
module: "MMM-DarkSkyForecast",
header: "Weather",
position: "top_right",
classes: "default everyone",
disabled: false,
config: {
apikey: " MY PRIVATE KEY ",
latitude: "43.451637",
longitude: "-80.492531",
iconset: "4c",
concise: true,
maxDailiesToShow: 5, // forcast days
forecastLayout: "table" // table or tiled
}
},
{
module: "newsfeed",
position: "bottom_bar",
config: {
feeds: [
{
title: "New York Times",
url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
},
{
title: "CTV News",
url: "https://kitchener.ctvnews.ca/rss/ctv-news-kitchener-1.822359"
}
],
showSourceTitle: true,
showPublishDate: true,
broadcastNewsFeeds: true,
broadcastNewsUpdates: true
}
},
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== “undefined”) {module.exports = config;}