Closed iTheMaverick closed 1 year ago
you are missing the close bracket on the modules:[]
list
add a line with just
]
before the comment before the if on the last line
Try this:
/* MagicMirror² Config Sample
*
* By Michael Teeuw https://michaelteeuw.nl/
* MIT Licensed.
*
* For more information on how you can configure this file
* see https://docs.magicmirror.builders/configuration/introduction.html
* and https://docs.magicmirror.builders/modules/configuration.html
*/
let 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 or empty, is "localhost"
port: 8080,
basePath: "/", // The URL path where MagicMirror² is hosted. If you are using a Reverse proxy
// you must set the sub path here. basePath must end with a /
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](http://192.168.3.0/28)"],
useHttps: false, // Support HTTPS or not, default "false" will use HTTP
httpsPrivateKey: "", // HTTPS private key path, only require when useHttps is true
httpsCertificate: "", // HTTPS Certificate path, only require when useHttps is true
language: "en",
locale: "en-US",
logLevel: ["INFO", "LOG", "WARN", "ERROR"], // Add "DEBUG" for even more logging
timeFormat: 24,
units: "metric",
// serverOnly: true/false/"local" ,
// local for armv6l processors, default
// starts serveronly and then starts chrome browser
// false, default for all NON-armv6l devices
// true, force serveronly mode, because you want to.. no UI on this device
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",
url: "webcal://[www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics](http://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics)",
},
],
},
},
{
module: "MMM-MonthCalendar",
position: "top_left",
header: "",
config: {
updateDelay: 5,
showAdjacentMonths: true,
},
},
{
module: "MMM-MyScoreboard",
position: "bottom_left",
classes: "default everyone",
header: "Scoreboard",
config: {
showLeagueSeparators: true,
colored: true,
viewStyle: "largeLogos",
sports: [
{
league: "NHL",
teams: ["CAR"],
},
{
league: "MLB",
teams: ["ATL"],
},
],
},
},
{
module: "MMM-AirQuality",
position: "top_right", // you may choose any location
header: "Air Quality", //choose a header if you like
config: {
location: "usa/north-carolina/northampton", // the location to check the index for
},
},
{
module: "MMM-nominalflight",
position: "bottom_right", // you may choose any location
header: "Upcoming Shuttle Launches", // optional
config: {
launches: 5, // optional
},
},
{
module: "MMM-OpenWeatherMapForecast",
header: "Weather",
position: "top_right",
classes: "default everyone",
disabled: false,
config: {
apikey: "##################################################",
latitude: "36.42501",
longitude: "-77.104568",
iconset: "6oa",
concise: false,
forecastLayout: "tiled",
},
},
],
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}
I recommend you to edit your first post and remove the apikey.
Try this:
/* MagicMirror² Config Sample * * By Michael Teeuw https://michaelteeuw.nl/ * MIT Licensed. * * For more information on how you can configure this file * see https://docs.magicmirror.builders/configuration/introduction.html * and https://docs.magicmirror.builders/modules/configuration.html */ let 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 or empty, is "localhost" port: 8080, basePath: "/", // The URL path where MagicMirror² is hosted. If you are using a Reverse proxy // you must set the sub path here. basePath must end with a / 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](http://192.168.3.0/28)"], useHttps: false, // Support HTTPS or not, default "false" will use HTTP httpsPrivateKey: "", // HTTPS private key path, only require when useHttps is true httpsCertificate: "", // HTTPS Certificate path, only require when useHttps is true language: "en", locale: "en-US", logLevel: ["INFO", "LOG", "WARN", "ERROR"], // Add "DEBUG" for even more logging timeFormat: 24, units: "metric", // serverOnly: true/false/"local" , // local for armv6l processors, default // starts serveronly and then starts chrome browser // false, default for all NON-armv6l devices // true, force serveronly mode, because you want to.. no UI on this device 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", url: "webcal://[www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics](http://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics)", }, ], }, }, { module: "MMM-MonthCalendar", position: "top_left", header: "", config: { updateDelay: 5, showAdjacentMonths: true, }, }, { module: "MMM-MyScoreboard", position: "bottom_left", classes: "default everyone", header: "Scoreboard", config: { showLeagueSeparators: true, colored: true, viewStyle: "largeLogos", sports: [ { league: "NHL", teams: ["CAR"], }, { league: "MLB", teams: ["ATL"], }, ], }, }, { module: "MMM-AirQuality", position: "top_right", // you may choose any location header: "Air Quality", //choose a header if you like config: { location: "usa/north-carolina/northampton", // the location to check the index for }, }, { module: "MMM-nominalflight", position: "bottom_right", // you may choose any location header: "Upcoming Shuttle Launches", // optional config: { launches: 5, // optional }, }, { module: "MMM-OpenWeatherMapForecast", header: "Weather", position: "top_right", classes: "default everyone", disabled: false, config: { apikey: "##################################################", latitude: "36.42501", longitude: "-77.104568", iconset: "6oa", concise: false, forecastLayout: "tiled", }, }, ], }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== "undefined") { module.exports = config; }
I recommend you to edit your first post and remove the apikey.
Probably a good idea, thanks for the help.
Try this:
/* MagicMirror² Config Sample * * By Michael Teeuw https://michaelteeuw.nl/ * MIT Licensed. * * For more information on how you can configure this file * see https://docs.magicmirror.builders/configuration/introduction.html * and https://docs.magicmirror.builders/modules/configuration.html */ let 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 or empty, is "localhost" port: 8080, basePath: "/", // The URL path where MagicMirror² is hosted. If you are using a Reverse proxy // you must set the sub path here. basePath must end with a / 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](http://192.168.3.0/28)"], useHttps: false, // Support HTTPS or not, default "false" will use HTTP httpsPrivateKey: "", // HTTPS private key path, only require when useHttps is true httpsCertificate: "", // HTTPS Certificate path, only require when useHttps is true language: "en", locale: "en-US", logLevel: ["INFO", "LOG", "WARN", "ERROR"], // Add "DEBUG" for even more logging timeFormat: 24, units: "metric", // serverOnly: true/false/"local" , // local for armv6l processors, default // starts serveronly and then starts chrome browser // false, default for all NON-armv6l devices // true, force serveronly mode, because you want to.. no UI on this device 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", url: "webcal://[www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics](http://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics)", }, ], }, }, { module: "MMM-MonthCalendar", position: "top_left", header: "", config: { updateDelay: 5, showAdjacentMonths: true, }, }, { module: "MMM-MyScoreboard", position: "bottom_left", classes: "default everyone", header: "Scoreboard", config: { showLeagueSeparators: true, colored: true, viewStyle: "largeLogos", sports: [ { league: "NHL", teams: ["CAR"], }, { league: "MLB", teams: ["ATL"], }, ], }, }, { module: "MMM-AirQuality", position: "top_right", // you may choose any location header: "Air Quality", //choose a header if you like config: { location: "usa/north-carolina/northampton", // the location to check the index for }, }, { module: "MMM-nominalflight", position: "bottom_right", // you may choose any location header: "Upcoming Shuttle Launches", // optional config: { launches: 5, // optional }, }, { module: "MMM-OpenWeatherMapForecast", header: "Weather", position: "top_right", classes: "default everyone", disabled: false, config: { apikey: "##################################################", latitude: "36.42501", longitude: "-77.104568", iconset: "6oa", concise: false, forecastLayout: "tiled", }, }, ], }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== "undefined") { module.exports = config; }
I recommend you to edit your first post and remove the apikey.
When I put this in it says: Failed to Retrieve Device Information & Failed to load swrast driver
It was working fine until I added 3 new modules
After fixing the calendar URL your config works on my device.
url: "webcal://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics"
Only MMM-AirQuality and MMM-nominalflight aren't getting data.
What the output of uname -a
?
Not seeing anything named uname -a
What the output of
uname -a
?
Sorry, you have to enter this in the terminal :slightly_smiling_face:
"uname is a command-line utility that prints basic information about the operating system name and system hardware."
Linux raspberrypi 6.1.21-v8+ #1642 SMP PREEMPT Mon Apr 3 17:24:16 BST 2023 aarch64 GNU/Linux
Sorry, you have to enter this in the terminal 🙂
"uname is a command-line utility that prints basic information about the operating system name and system hardware."
closing this here, if you still have problems with your config please ask in the forum or on discord.
Whenever I try and start magicmirror it says that it has an issue with the if at the very end of the