The only thing it is displaying is Checking status…
I have cloned the repository and added this to my config. I am at a road block. Does anyone know how to fix this? I obviously took out all of my personal information. The proper client ID and secret is added in my config. Am I supposed to change something in the modules folder for this?
/* 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: 12,
units: "metric",
modules: [
{
module: "alert",
},
{
module: "updatenotification",
position: "top_bar"
},
{
module: "clock",
position: "top_left"
},
{
module: "calendar",
header: "Shaunas Calendar",
position: "top_left",
config: {
calendars: [
{
symbol: "calendar-check",
url: "https://calendar.google.com/calendar/ical/s/basic.ics"
}
]
}
},
{
module: 'compliments',
position: 'lower_third',
config: {
updateInterval: 40000,
compliments: {
anytime: [
"Good heaven all mighty! You are beautiful",
"Aren't I a lucky mirror? \n Get to look at this beautiful lady while she gets ready",
"Mirror Mirror on the wall \n Who's the fairest one of them all? \n Shauna Stilson is the fairest of them all"
],
morning: [
"Good morning, sunshine!",
"You're up pretty early!",
"I already know you look DAMN beautiful!",
"I hope I got you coffee...",
"You're truly something else...Hot damn!",
"Mirror Mirror on the wall \n Who's the fairest one of them all? \n Shauna Stilson is the fairest of them all"
],
afternoon: [
"It's the afternoon!",
"You must be getting ready for work!",
"I hope you have an amazing day gorgeous!",
"Who's that sexy lady?!... /nOfcourse it's Shauna!",
"I still hope I grabbed you coffee",
"I love you",
"I'm going to marry the fuck out of you",
"Mirror Mirror on the wall \n Who's the fairest one of them all? \n Shauna Stilson is the fairest of them all"
],
evening: [
"Who's the lucky guy to be taking you out?! /nI hope it's me!",
"HOT MAMA DAMN! \n HOW DID A MIRROR GET SO LUCKY?!",
"Wasn't the day just spectacular?",
"Never too late to put on some makeup",
"Mirror Mirror on the wall \n Who's the fairest one of them all? \n Shauna Stilson is the fairest of them all"
]
}
}
},
{
module: 'MMM-uber',
position: 'bottom_left',
header: 'Uber ETA',
config: {
lat: .302612, // use your exact pickup loaction
lng: -.336220, // use your exact pickup loaction
uberServerToken: '<ServerToken>',
}
},
{
module: 'MMM-lyft',
position: 'bottom_left',
header: 'Lyft ETA',
config: {
lat: .302612, // use your exact pickup loaction
lng: -.336220, // use your exact pickup loaction
clientId: '<MyClientIDl>',
clientSecret: '<MyClientSecret>',
}
},
{
module: "MMM-DarkSkyForecast",
header: "Weather",
position: "top_right",
classes: "default everyone",
disabled: false,
config: {
apikey: "e4734af0d99838ae",
latitude: ".302614",
longitude: "-.336216",
iconset: "4c",
concise: false,
forecastLayout: "table",
units: "us"
}
},
{
module: 'MMM-MyNotes',
header: "Shauna & Jon's Notes",
position: 'top_right',
classes: 'default everyone',
config: {
maxNotes: 5,
pollFrequency: 600000,
showDatePosted: true,
dateFormat: 'MM-D-YYYY'
}
},
{
module: 'MMM-MyCommute',
position: 'bottom_left',
config: {
apikey: 'AIzaLOe0HfcdNo',
origin: WA 98023',
destinations: [
{
destination: 't, Federal Way, WA 98003',
label: 'To Black Angus',
mode: 'driving',
color: '#f6a0ee',
travelTimeFormat: 'h[h] m[m]'
},
{
destination: 'Burlington, WA 98233',
label: 'Scott & Kaitlins',
mode: 'driving',
color: '#f6a0ee',
travelTimeFormat: 'h[h] m[m]'
},
{
destination: ', Burlington, WA 98233',
label: 'Coconut Kennys',
mode: 'driving',
color: '#f6a0ee',
travelTimeFormat: 'h[h] m[m]'
},
]
}
}
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}