Thank you for your response. I am delayed in responding because La Jefecita had other priorities for me that did not include my computers. :)
I have a typo in the original post as the computer is a Raspberry Pi Model 3 A+ Rev 1.0
The Raspios was built with the image:
2023-05-03-raspios-bullseye-armhf.img.xz
The output from the commands are:
uname -a
pi@MagicMirror:~$ uname -a
Linux MagicMirror 6.1.21-v7+ #1642 SMP Mon Apr 3 17:20:52 BST 2023 armv7l GNU/Linux
lsb_release -a
No LSB modules are available.
Distributor ID: Raspbian
Description: Raspbian GNU/Linux 11 (bullseye)
Release: 11
Codename: bullseye
node -v
v16.20.0
npm -v
8.19.4
I used the Manual Installation method as described in MagicMirror² Documentation Installation & Usage.
Address value in ~/MagicMirror/config/config.js is localhost
I have also included the config file below.
Thank you for your assistance.
Butch
/* 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", "192.168.1.0/24"], // 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"],
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: "imperial",
// 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: "MMM-LogExt",
config: {}
},
{
module: "updatenotification",
position: "top_bar"
},
{
module: "clock",
position: "top_left",
config: {
timeFormat: 24,
},
},
{ module: "calendar",
header: "Kemper Family Combined",
position: "top_left",
config: {
coloredText: true,
timeFormat: 24,
fade: false,
fadePoint: 1,
maximumEntries: 20,
maximumNumberOfDays: 21,
fetchInterval: 300000,
calendars: [
{ // Butch
url: 'http://localhost:8080/modules/calendars/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.ics',
name: "Butch",
symbol: "calendar",
color: '#FF0000'
},
{ // Jan
url: 'http://localhost:8080/modules/calendars/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.ics',
name: "Jan",
symbol: "calendar",
color: '#008000'
},
{ // Family 1
url: 'http://localhost:8080/modules/calendars/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.ics',
name: "Family 1",
symbol: "calendar",
color: '#FFFF00'
},
{ // Family 2
url: 'http://localhost:8080/modules/calendars/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.ics',
name: "Family 2",
symbol: "calendar",
color: '#00FF00'
},
{ // Kids
url: 'http://localhost:8080/modules/calendars/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.ics',
name: "Kids",
symbol: "calendar",
color: '#0000FF'
},
{ // City Council
url: 'http://localhost:8080/modules/calendars/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.ics',
name: "City Council",
symbol: "calendar",
color: '#FFA500'
}
]
}
},
// {
// module: "compliments",
// position: "lower_third"
// },
{
module: "weather",
position: "top_right",
header: "Current Weather",
config: {
weatherProvider: "openweathermap",
type: "current",
units: "imperial",
tempUnits: "imperial",
roundTemp: true,
timeFormat: 24,
appendLocationNameToHeader: true,
onlyTemp: false,
showSun: true,
fade: false,
fadePoint: 1,
colored: true,
updateInterval: 900000,
maxEntries: 7,
degreeLabel: true,
lang: "en",
location: "Sachse,Texas",
locationID: "4724564",
//ID from http://bulk.openweathermap.org/sample/city.list.json.gz;
apiKey: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
},
{
module: "weather",
position: "top_right",
header: "Weather Forecast at",
config: {
initialLoadDelay: 5000,
weatherProvider: "openweathermap",
type: "forecast",
units: "imperial",
tempUnits: "imperial",
roundTemp: true,
timeFormat: 24,
appendLocationNameToHeader: true,
fade: false,
fadePoint: 1,
colored: true,
updateInterval: 900000,
maxEntries: 10,
maxNumberOfDays: 10,
ignoreToday: false,
degreeLabel: true,
lang: "en",
location: "Sachse,Texas",
locationID: "4724564", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz;
apiKey: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
},
{
module: "MMM-Fuel",
position: "top_right",
config: {
provider: "gasbuddy",
zip: "75048",
types: ["regular"],
sortBy: "regular",
max: 7,
showDistance: false,
fade: false,
updateInterval: 30000,
rotate: false,
rotateInterval: 15000
}
},
{
module: "newsfeed",
position: "bottom_bar",
config: {
feeds: [
{
title: "New York Times",
url: "https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml"
}
],
showSourceTitle: true,
showPublishDate: true,
broadcastNewsFeeds: true,
broadcastNewsUpdates: true
}
},
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}